Changeset 249599 in webkit


Ignore:
Timestamp:
Sep 6, 2019 4:09:00 PM (5 years ago)
Author:
mark.lam@apple.com
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:
Location:
trunk/JSTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r249597 r249599  
     12019-09-06  Mark Lam  <mark.lam@apple.com>
     2
     3        Gardening: speculative test fix to green bots.
     4        https://bugs.webkit.org/show_bug.cgi?id=201529
     5        <rdar://problem/53935772>
     6
     7        Not reviewed.
     8
     9        * stress/test-out-of-memory.js:
     10
    1112019-09-06  Ross Kirsling  <ross.kirsling@sony.com>
    212
  • trunk/JSTests/stress/test-out-of-memory.js

    r249578 r249599  
    1212new Promise(foo);
    1313
     14var arrays = [];
    1415var exception;
    1516try {
    1617    for (let i = 0; i < 10000000; i++)
    17         new ArrayBuffer(1000);
     18        arrays.push(new ArrayBuffer(1000));
    1819
    1920} catch (e) {
Note: See TracChangeset for help on using the changeset viewer.