Title: [232166] trunk/LayoutTests
Revision
232166
Author
[email protected]
Date
2018-05-24 15:06:39 -0700 (Thu, 24 May 2018)

Log Message

REGRESSION: performance-api/performance-observer-entry-sort.html is flaky
​https://bugs.webkit.org/show_bug.cgi?id=185385

Reviewed by Saam Barati.

Partially revert r232033 to see if the flaky failure comes back.

* performance-api/performance-observer-entry-sort.html:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (232165 => 232166)


--- trunk/LayoutTests/ChangeLog	2018-05-24 21:47:20 UTC (rev 232165)
+++ trunk/LayoutTests/ChangeLog	2018-05-24 22:06:39 UTC (rev 232166)
@@ -1,3 +1,14 @@
+2018-05-24  Ryosuke Niwa  <[email protected]>
+
+        REGRESSION: performance-api/performance-observer-entry-sort.html is flaky
+        ​https://bugs.webkit.org/show_bug.cgi?id=185385
+
+        Reviewed by Saam Barati.
+
+        Partially revert r232033 to see if the flaky failure comes back.
+
+        * performance-api/performance-observer-entry-sort.html:
+
 2018-05-24  Chris Dumez  <[email protected]>
 
         [iOS WK2] Layout Test imported/w3c/web-platform-tests/service-workers/service-worker/update-after-navigation-fetch-event.https.html is a flaky failure

Modified: trunk/LayoutTests/performance-api/performance-observer-entry-sort.html (232165 => 232166)


--- trunk/LayoutTests/performance-api/performance-observer-entry-sort.html	2018-05-24 21:47:20 UTC (rev 232165)
+++ trunk/LayoutTests/performance-api/performance-observer-entry-sort.html	2018-05-24 22:06:39 UTC (rev 232166)
@@ -15,12 +15,9 @@
 }
 
 function wait() {
-    let start = performance.now();
-    let now;
-    do {
-        now = performance.now();
-    } while (start === now);
-    assert(() => now > start);
+    let now = performance.now();
+    while (now === performance.now())
+        continue;
 }
 
 let observer = new PerformanceObserver((list) => {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to