Title: [249599] trunk/JSTests
Revision
249599
Author
mark....@apple.com
Date
2019-09-06 16:09:00 -0700 (Fri, 06 Sep 2019)

Log Message

Gardening: speculative test fix to green bots.
https://bugs.webkit.org/show_bug.cgi?id=201529
<rdar://problem/53935772>

Not reviewed.

* stress/test-out-of-memory.js:

Modified Paths

Diff

Modified: trunk/JSTests/ChangeLog (249598 => 249599)


--- trunk/JSTests/ChangeLog	2019-09-06 22:59:40 UTC (rev 249598)
+++ trunk/JSTests/ChangeLog	2019-09-06 23:09:00 UTC (rev 249599)
@@ -1,3 +1,13 @@
+2019-09-06  Mark Lam  <mark....@apple.com>
+
+        Gardening: speculative test fix to green bots.
+        https://bugs.webkit.org/show_bug.cgi?id=201529
+        <rdar://problem/53935772>
+
+        Not reviewed.
+
+        * stress/test-out-of-memory.js:
+
 2019-09-06  Ross Kirsling  <ross.kirsl...@sony.com>
 
         Math.round() produces wrong result for value prior to 0.5

Modified: trunk/JSTests/stress/test-out-of-memory.js (249598 => 249599)


--- trunk/JSTests/stress/test-out-of-memory.js	2019-09-06 22:59:40 UTC (rev 249598)
+++ trunk/JSTests/stress/test-out-of-memory.js	2019-09-06 23:09:00 UTC (rev 249599)
@@ -11,10 +11,11 @@
 
 new Promise(foo);
 
+var arrays = [];
 var exception;
 try {
     for (let i = 0; i < 10000000; i++)
-        new ArrayBuffer(1000);
+        arrays.push(new ArrayBuffer(1000));
 
 } catch (e) {
     exception = e;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to