Title: [263240] trunk/JSTests
Revision
263240
Author
sbar...@apple.com
Date
2020-06-18 15:58:09 -0700 (Thu, 18 Jun 2020)

Log Message

sampling-profiler-wasm-name-section should run for more iterations
https://bugs.webkit.org/show_bug.cgi?id=207576
<rdar://problem/59431250>

Reviewed by Mark Lam.

This test was flaky because the sampling profiler is inherently probabilistic.
We need to run it for more iterations to ensure it's not flaky.

* stress/sampling-profiler-wasm-name-section.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (263239 => 263240)


--- trunk/JSTests/ChangeLog	2020-06-18 22:53:43 UTC (rev 263239)
+++ trunk/JSTests/ChangeLog	2020-06-18 22:58:09 UTC (rev 263240)
@@ -1,3 +1,16 @@
+2020-06-18  Saam Barati  <sbar...@apple.com>
+
+        sampling-profiler-wasm-name-section should run for more iterations
+        https://bugs.webkit.org/show_bug.cgi?id=207576
+        <rdar://problem/59431250>
+
+        Reviewed by Mark Lam.
+
+        This test was flaky because the sampling profiler is inherently probabilistic.
+        We need to run it for more iterations to ensure it's not flaky.
+
+        * stress/sampling-profiler-wasm-name-section.js:
+
 2020-06-18  Ross Kirsling  <ross.kirsl...@sony.com>
 
         [Intl] Enable RelativeTimeFormat and Locale by default

Modified: trunk/JSTests/stress/sampling-profiler-wasm-name-section.js (263239 => 263240)


--- trunk/JSTests/stress/sampling-profiler-wasm-name-section.js	2020-06-18 22:53:43 UTC (rev 263239)
+++ trunk/JSTests/stress/sampling-profiler-wasm-name-section.js	2020-06-18 22:58:09 UTC (rev 263240)
@@ -58,7 +58,7 @@
 
     const importObject = { env: { _silly: i => {
         var result = 0;
-        for (var i = 0; i < 100000; ++i)
+        for (var i = 0; i < 2000000; ++i)
             result++;
         return result;
     } } };
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to