Title: [242213] trunk/JSTests
Revision
242213
Author
ysuz...@apple.com
Date
2019-02-28 12:17:53 -0800 (Thu, 28 Feb 2019)

Log Message

Unreviewed, reduce the count in the stress/read-dead-bytecode-locals-in-must-handle-values2.js
https://bugs.webkit.org/show_bug.cgi?id=195144

1e8 takes too much time in the Debug build. I tried 1e5 with the old Debug build and it successfully reproduced the issue.
Change the number from 1e8 to 1e5.

* stress/read-dead-bytecode-locals-in-must-handle-values2.js:
(foo):

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (242212 => 242213)


--- trunk/JSTests/ChangeLog	2019-02-28 19:58:11 UTC (rev 242212)
+++ trunk/JSTests/ChangeLog	2019-02-28 20:17:53 UTC (rev 242213)
@@ -1,3 +1,14 @@
+2019-02-28  Yusuke Suzuki  <ysuz...@apple.com>
+
+        Unreviewed, reduce the count in the stress/read-dead-bytecode-locals-in-must-handle-values2.js
+        https://bugs.webkit.org/show_bug.cgi?id=195144
+
+        1e8 takes too much time in the Debug build. I tried 1e5 with the old Debug build and it successfully reproduced the issue.
+        Change the number from 1e8 to 1e5.
+
+        * stress/read-dead-bytecode-locals-in-must-handle-values2.js:
+        (foo):
+
 2019-02-28  Dominik Infuehr  <dinfu...@igalia.com>
 
         Test times out on ARM/MIPS

Modified: trunk/JSTests/stress/read-dead-bytecode-locals-in-must-handle-values2.js (242212 => 242213)


--- trunk/JSTests/stress/read-dead-bytecode-locals-in-must-handle-values2.js	2019-02-28 19:58:11 UTC (rev 242212)
+++ trunk/JSTests/stress/read-dead-bytecode-locals-in-must-handle-values2.js	2019-02-28 20:17:53 UTC (rev 242213)
@@ -10,7 +10,7 @@
 function foo() {
     var i = 0;
     if (''.match(/^/)) {
-        while(i < 1e8) {
+        while(i < 1e5) {
             bar(2);
             ++i;
         }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to