⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 275052 in webkit


Ignore:
Timestamp:
Mar 25, 2021, 12:57:08 PM (5 years ago)
Author:
sbarati@apple.com
Message:

early-return-from-builtin.js should try/catch in case of OOM
https://bugs.webkit.org/show_bug.cgi?id=223756

Reviewed by Yusuke Suzuki.

It's throwing an OOM on iOS.

  • stress/early-return-from-builtin.js:
Location:
trunk/JSTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r274945 r275052  
     12021-03-25  Saam Barati  <sbarati@apple.com>
     2
     3        early-return-from-builtin.js should try/catch in case of OOM
     4        https://bugs.webkit.org/show_bug.cgi?id=223756
     5
     6        Reviewed by Yusuke Suzuki.
     7
     8        It's throwing an OOM on iOS.
     9
     10        * stress/early-return-from-builtin.js:
     11
    1122021-03-24  Michael Saboff  <msaboff@apple.com>
    213
  • trunk/JSTests/stress/early-return-from-builtin.js

    r271592 r275052  
    1919};
    2020
    21 [...iter];
     21try {
     22    [...iter];
     23} catch {}
Note: See TracChangeset for help on using the changeset viewer.