Title: [246904] trunk/LayoutTests
Revision
246904
Author
[email protected]
Date
2019-06-27 13:57:10 -0700 (Thu, 27 Jun 2019)

Log Message

Layout Test fast/parser/parser-yield-timing.html was flaky due to strict tolerance, increased tolerance.
https://bugs.webkit.org/show_bug.cgi?id=199280

Patch by Russell Epstein <[email protected]> on 2019-06-27
Reviewed by Tim Horton.

* fast/parser/parser-yield-timing-expected.txt:
* fast/parser/parser-yield-timing.html:
* platform/mac-wk1/TestExpectations:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (246903 => 246904)


--- trunk/LayoutTests/ChangeLog	2019-06-27 20:54:59 UTC (rev 246903)
+++ trunk/LayoutTests/ChangeLog	2019-06-27 20:57:10 UTC (rev 246904)
@@ -1,3 +1,14 @@
+2019-06-27  Russell Epstein  <[email protected]>
+
+        Layout Test fast/parser/parser-yield-timing.html was flaky due to strict tolerance, increased tolerance.
+        https://bugs.webkit.org/show_bug.cgi?id=199280
+
+        Reviewed by Tim Horton.
+
+        * fast/parser/parser-yield-timing-expected.txt:
+        * fast/parser/parser-yield-timing.html:
+        * platform/mac-wk1/TestExpectations:
+
 2019-06-27  Ryan Haddad  <[email protected]>
 
         REGRESSION (r246888): fast/dom/navigator-detached-no-crash.html failing on Apple High Sierra Release WK2 (Tests)

Modified: trunk/LayoutTests/fast/parser/parser-yield-timing-expected.txt (246903 => 246904)


--- trunk/LayoutTests/fast/parser/parser-yield-timing-expected.txt	2019-06-27 20:54:59 UTC (rev 246903)
+++ trunk/LayoutTests/fast/parser/parser-yield-timing-expected.txt	2019-06-27 20:57:10 UTC (rev 246904)
@@ -3,9 +3,9 @@
 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
 
 
-PASS new Date().getTime() - startTime is within 300 of 1000
-PASS new Date().getTime() - startTime is within 300 of 2000
-PASS new Date().getTime() - startTime is within 300 of 3000
+PASS new Date().getTime() - startTime is within 400 of 1000
+PASS new Date().getTime() - startTime is within 400 of 2000
+PASS new Date().getTime() - startTime is within 400 of 3000
 PASS successfullyParsed is true
 
 TEST COMPLETE

Modified: trunk/LayoutTests/fast/parser/parser-yield-timing.html (246903 => 246904)


--- trunk/LayoutTests/fast/parser/parser-yield-timing.html	2019-06-27 20:54:59 UTC (rev 246903)
+++ trunk/LayoutTests/fast/parser/parser-yield-timing.html	2019-06-27 20:57:10 UTC (rev 246904)
@@ -8,7 +8,7 @@
       description("Runs 3 separate 1 second &lt;script&gt; blocks with a setTimeout schedule before each. The execution time of the setTimeout is when the HTML yielded to the event loop. The yields also represent painting opportunities. We want the parser to yield every 0.5 seconds once it has seen a script.");
 
       var startTime = new Date().getTime();
-      var tolerance = 300; // 300 ms
+      var tolerance = 400; // 400 ms
 
       function expectElapsedTime(expectedTime) {
         shouldBeCloseTo("new Date().getTime() - startTime", expectedTime, tolerance);

Modified: trunk/LayoutTests/platform/mac-wk1/TestExpectations (246903 => 246904)


--- trunk/LayoutTests/platform/mac-wk1/TestExpectations	2019-06-27 20:54:59 UTC (rev 246903)
+++ trunk/LayoutTests/platform/mac-wk1/TestExpectations	2019-06-27 20:57:10 UTC (rev 246904)
@@ -746,5 +746,3 @@
 
 webkit.org/b/199242 [ Debug ] http/tests/performance/performance-resource-timing-resourcetimingbufferfull-shrinking-buffer-crash.html [ Pass Failure ]
 
-webkit.org/b/199280 [ Debug Mojave ] fast/parser/parser-yield-timing.html [ Pass Failure ]
-
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to