Title: [155187] trunk/Tools
Revision
155187
Author
[email protected]
Date
2013-09-06 05:07:47 -0700 (Fri, 06 Sep 2013)

Log Message

REGRESSION(r155140) Broke pixel tests on EFL/GTK/Qt
https://bugs.webkit.org/show_bug.cgi?id=120843

Reviewed by Csaba Osztrogonác.

Call notifyDone like the platform specific forceRepaintDoneCallback methods
it replaced did. The method is empty on the Apple ports.

* WebKitTestRunner/TestInvocation.cpp:
(WTR::TestInvocation::forceRepaintDoneCallback):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (155186 => 155187)


--- trunk/Tools/ChangeLog	2013-09-06 11:43:20 UTC (rev 155186)
+++ trunk/Tools/ChangeLog	2013-09-06 12:07:47 UTC (rev 155187)
@@ -1,5 +1,18 @@
 2013-09-06  Allan Sandfeld Jensen  <[email protected]>
 
+        REGRESSION(r155140) Broke pixel tests on EFL/GTK/Qt
+        https://bugs.webkit.org/show_bug.cgi?id=120843
+
+        Reviewed by Csaba Osztrogonác.
+
+        Call notifyDone like the platform specific forceRepaintDoneCallback methods
+        it replaced did. The method is empty on the Apple ports.
+
+        * WebKitTestRunner/TestInvocation.cpp:
+        (WTR::TestInvocation::forceRepaintDoneCallback):
+
+2013-09-06  Allan Sandfeld Jensen  <[email protected]>
+
         [Qt][WK2] Window used by WebKitTestRunner loses active status
         https://bugs.webkit.org/show_bug.cgi?id=120774
 

Modified: trunk/Tools/WebKitTestRunner/TestInvocation.cpp (155186 => 155187)


--- trunk/Tools/WebKitTestRunner/TestInvocation.cpp	2013-09-06 11:43:20 UTC (rev 155186)
+++ trunk/Tools/WebKitTestRunner/TestInvocation.cpp	2013-09-06 12:07:47 UTC (rev 155187)
@@ -314,6 +314,7 @@
 {
     TestInvocation* testInvocation = static_cast<TestInvocation*>(context);
     testInvocation->m_gotRepaint = true;
+    TestController::shared().notifyDone();
 }
 
 void TestInvocation::dumpResults()
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to