Title: [250131] trunk/JSTests
Revision
250131
Author
sbar...@apple.com
Date
2019-09-20 08:40:09 -0700 (Fri, 20 Sep 2019)

Log Message

Unreviewed. Make toctou-having-a-bad-time-new-array.js run for less time because it's timing out on the debug bots.

* stress/toctou-having-a-bad-time-new-array.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (250130 => 250131)


--- trunk/JSTests/ChangeLog	2019-09-20 15:23:50 UTC (rev 250130)
+++ trunk/JSTests/ChangeLog	2019-09-20 15:40:09 UTC (rev 250131)
@@ -1,3 +1,9 @@
+2019-09-20  Saam Barati  <sbar...@apple.com>
+
+        Unreviewed. Make toctou-having-a-bad-time-new-array.js run for less time because it's timing out on the debug bots.
+
+        * stress/toctou-having-a-bad-time-new-array.js:
+
 2019-09-19  Yusuke Suzuki  <ysuz...@apple.com>
 
         [JSC] DFG op_call_varargs should not assume that one-previous-local of freeReg is usable

Modified: trunk/JSTests/stress/toctou-having-a-bad-time-new-array.js (250130 => 250131)


--- trunk/JSTests/stress/toctou-having-a-bad-time-new-array.js	2019-09-20 15:23:50 UTC (rev 250130)
+++ trunk/JSTests/stress/toctou-having-a-bad-time-new-array.js	2019-09-20 15:40:09 UTC (rev 250131)
@@ -11,6 +11,6 @@
     Object.defineProperty(proto, '0', {});
 `;
 
-for (let i = 0; i < 5000; i++) {
+for (let i = 0; i < 2000; i++) {
     runString(code);
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to