Title: [201682] trunk
Revision
201682
Author
[email protected]
Date
2016-06-04 12:11:17 -0700 (Sat, 04 Jun 2016)

Log Message

REGRESSION (r201263): Some tests have become flaky timeouts.
https://bugs.webkit.org/show_bug.cgi?id=157990

Reviewed by Darin Adler.

Tools:

* WebKitTestRunner/TestInvocation.cpp: (WTR::TestInvocation::invoke):
It is somewhat legitimate for WebContent to not respond to messages after the test
is done; it can be e.g. re-doing a costly repaint. So, we should restart is silently,
without making the current test fail.

LayoutTests:

* platform/mac-wk2/TestExpectations:
* platform/mac/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (201681 => 201682)


--- trunk/LayoutTests/ChangeLog	2016-06-04 19:10:24 UTC (rev 201681)
+++ trunk/LayoutTests/ChangeLog	2016-06-04 19:11:17 UTC (rev 201682)
@@ -1,3 +1,13 @@
+2016-06-04  Alexey Proskuryakov  <[email protected]>
+
+        REGRESSION (r201263): Some tests have become flaky timeouts.
+        https://bugs.webkit.org/show_bug.cgi?id=157990
+
+        Reviewed by Darin Adler.
+
+        * platform/mac-wk2/TestExpectations:
+        * platform/mac/TestExpectations:
+
 2016-06-04  Joseph Pecoraro  <[email protected]>
 
         Add better basic isNaN test coverage

Modified: trunk/LayoutTests/platform/mac/TestExpectations (201681 => 201682)


--- trunk/LayoutTests/platform/mac/TestExpectations	2016-06-04 19:10:24 UTC (rev 201681)
+++ trunk/LayoutTests/platform/mac/TestExpectations	2016-06-04 19:11:17 UTC (rev 201682)
@@ -1344,8 +1344,6 @@
 
 webkit.org/b/155196 media/video-with-file-url-allowed-by-csp-media-src-star-with-AllowContentSecurityPolicySourceStarToMatchAnyProtocol-enabled.html [ Skip ]
 
-webkit.org/b/157990 [ Release ] mathml/wbr-in-mroot-crash.html [ Timeout ]
-
 webkit.org/b/158101 imported/blink/http/tests/plugins/get-url-notify-on-removal.html [ Pass Timeout ]
 
 webkit.org/b/143653 [ Yosemite ] http/tests/websocket/tests/hybi/upgrade-simple-ws.html [ Skip ] # Timeout

Modified: trunk/LayoutTests/platform/mac-wk2/TestExpectations (201681 => 201682)


--- trunk/LayoutTests/platform/mac-wk2/TestExpectations	2016-06-04 19:10:24 UTC (rev 201681)
+++ trunk/LayoutTests/platform/mac-wk2/TestExpectations	2016-06-04 19:11:17 UTC (rev 201682)
@@ -462,6 +462,4 @@
 
 webkit.org/b/157589 fast/text-autosizing/ios/text-autosizing-after-back.html [ Pass Timeout ]
 
-webkit.org/b/158133 [ Debug ] js/function-apply.html [ Pass Timeout ]
-
 webkit.org/b/158237 fast/scrolling/scroll-container-horizontally.html [ Pass Timeout ]

Modified: trunk/Tools/ChangeLog (201681 => 201682)


--- trunk/Tools/ChangeLog	2016-06-04 19:10:24 UTC (rev 201681)
+++ trunk/Tools/ChangeLog	2016-06-04 19:11:17 UTC (rev 201682)
@@ -1,3 +1,15 @@
+2016-06-04  Alexey Proskuryakov  <[email protected]>
+
+        REGRESSION (r201263): Some tests have become flaky timeouts.
+        https://bugs.webkit.org/show_bug.cgi?id=157990
+
+        Reviewed by Darin Adler.
+
+        * WebKitTestRunner/TestInvocation.cpp: (WTR::TestInvocation::invoke):
+        It is somewhat legitimate for WebContent to not respond to messages after the test
+        is done; it can be e.g. re-doing a costly repaint. So, we should restart is silently,
+        without making the current test fail.
+
 2016-06-03  Youenn Fablet  <[email protected]>
 
         [GTK] Update YouCompleteMe script to make all include paths absolute

Modified: trunk/Tools/WebKitTestRunner/TestInvocation.cpp (201681 => 201682)


--- trunk/Tools/WebKitTestRunner/TestInvocation.cpp	2016-06-04 19:10:24 UTC (rev 201681)
+++ trunk/Tools/WebKitTestRunner/TestInvocation.cpp	2016-06-04 19:11:17 UTC (rev 201682)
@@ -174,8 +174,6 @@
         dumpWebProcessUnresponsiveness();
     else if (TestController::singleton().resetStateToConsistentValues(m_options))
         return;
-    else
-        dumpWebProcessUnresponsiveness("TestController::resetStateToConsistentValues failed\n");
 
     // The process is unresponsive, so let's start a new one.
     TestController::singleton().terminateWebContentProcess();
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to