Title: [211498] trunk/JSTests
Revision
211498
Author
utatane....@gmail.com
Date
2017-02-01 10:34:31 -0800 (Wed, 01 Feb 2017)

Log Message

Unreviewed, remove loop
https://bugs.webkit.org/show_bug.cgi?id=167694

It causes timeout.
Original bug can be tested even without this loop.

* stress/arity-fixup-should-not-touch-stack-area-below-sp.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (211497 => 211498)


--- trunk/JSTests/ChangeLog	2017-02-01 18:31:05 UTC (rev 211497)
+++ trunk/JSTests/ChangeLog	2017-02-01 18:34:31 UTC (rev 211498)
@@ -1,5 +1,15 @@
 2017-02-01  Yusuke Suzuki  <utatane....@gmail.com>
 
+        Unreviewed, remove loop
+        https://bugs.webkit.org/show_bug.cgi?id=167694
+
+        It causes timeout.
+        Original bug can be tested even without this loop.
+
+        * stress/arity-fixup-should-not-touch-stack-area-below-sp.js:
+
+2017-02-01  Yusuke Suzuki  <utatane....@gmail.com>
+
         ArityFixup should adjust SP first
         https://bugs.webkit.org/show_bug.cgi?id=167239
 

Modified: trunk/JSTests/stress/arity-fixup-should-not-touch-stack-area-below-sp.js (211497 => 211498)


--- trunk/JSTests/stress/arity-fixup-should-not-touch-stack-area-below-sp.js	2017-02-01 18:31:05 UTC (rev 211497)
+++ trunk/JSTests/stress/arity-fixup-should-not-touch-stack-area-below-sp.js	2017-02-01 18:34:31 UTC (rev 211498)
@@ -1,5 +1,3 @@
 var args = "y,".repeat(30000);
 var g = Function(args, "return 0");
-for (var i = 0; i < 1e3; ++i) {
-    g();
-}
+g();
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to