Title: [279175] trunk/JSTests
Revision
279175
Author
sbar...@apple.com
Date
2021-06-23 11:34:02 -0700 (Wed, 23 Jun 2021)

Log Message

Run typedarray-intrinsic-getters-change-prototype for a fixed set of iterations
https://bugs.webkit.org/show_bug.cgi?id=227304

Reviewed by Mark Lam.

* stress/typedarray-intrinsic-getters-change-prototype.js:
(body):

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (279174 => 279175)


--- trunk/JSTests/ChangeLog	2021-06-23 17:42:05 UTC (rev 279174)
+++ trunk/JSTests/ChangeLog	2021-06-23 18:34:02 UTC (rev 279175)
@@ -1,3 +1,13 @@
+2021-06-23  Saam Barati  <sbar...@apple.com>
+
+        Run typedarray-intrinsic-getters-change-prototype for a fixed set of iterations
+        https://bugs.webkit.org/show_bug.cgi?id=227304
+
+        Reviewed by Mark Lam.
+
+        * stress/typedarray-intrinsic-getters-change-prototype.js:
+        (body):
+
 2021-06-22  Saam Barati  <sbar...@apple.com>
 
         Don't assume stress/out-of-memory-while-constructing-BytecodeGenerator.js will OOM

Modified: trunk/JSTests/stress/typedarray-intrinsic-getters-change-prototype.js (279174 => 279175)


--- trunk/JSTests/stress/typedarray-intrinsic-getters-change-prototype.js	2021-06-23 17:42:05 UTC (rev 279174)
+++ trunk/JSTests/stress/typedarray-intrinsic-getters-change-prototype.js	2021-06-23 18:34:02 UTC (rev 279175)
@@ -18,7 +18,7 @@
 
     let array = new Int32Array(15);
 
-    while(numberOfDFGCompiles(foo) < 1) {
+    for (let i = 0; i < 5000; ++i) {
         foo(array);
         bar(array);
         baz(array);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to