A lot of tests under animations are failing because DumpRenderTree is being process suppressed. A assertion must be taken to prevent this.
<rdar://problem/13115914>
Created attachment 185614 [details] Patch
Comment on attachment 185614 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=185614&action=review > Tools/DumpRenderTree/mac/DumpRenderTree.mm:1443 > + reason:@"DumpRenderTree should not be subject to process suppression"]; Please do not use colon-aligning indentation. Subsequent lines should just use a 4 space indent. Also, you need a retain since beginSuspensionOfSystemBehaviors returns an autoreleased object. > Tools/DumpRenderTree/mac/DumpRenderTree.mm:1444 > + UNUSED_PARAM(assertion); You should use ASSERT_UNUSED instead.
Created attachment 185626 [details] Patch
(In reply to comment #3) > (From update of attachment 185614 [details]) > View in context: https://bugs.webkit.org/attachment.cgi?id=185614&action=review > > > Tools/DumpRenderTree/mac/DumpRenderTree.mm:1443 > > + reason:@"DumpRenderTree should not be subject to process suppression"]; > > Please do not use colon-aligning indentation. Subsequent lines should just use a 4 space indent. > Fixed. > Also, you need a retain since beginSuspensionOfSystemBehaviors returns an autoreleased object. > > > Tools/DumpRenderTree/mac/DumpRenderTree.mm:1444 > > + UNUSED_PARAM(assertion); > > You should use ASSERT_UNUSED instead. Replaced with ASSERT_UNUSED.
Comment on attachment 185626 [details] Patch Clearing flags on attachment: 185626 Committed r141353: <http://trac.webkit.org/changeset/141353>
All reviewed patches have been landed. Closing bug.