Changeset 260806 in webkit


Ignore:
Timestamp:
Apr 27, 2020 6:35:33 PM (4 years ago)
Author:
keith_miller@apple.com
Message:

stress/generator-containing-for-of-on-map.js and stress/generator-containing-for-of-on-set.js timing out on debug JSC bot
https://bugs.webkit.org/show_bug.cgi?id=211095

Reviewed by Yusuke Suzuki.

Let's try making these tests shorter. Eager compilation should still be interesting with the shorter iterations.

  • stress/generator-containing-for-of-on-map.js:
  • stress/generator-containing-for-of-on-set.js:
Location:
trunk/JSTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JSTests/ChangeLog

    r260805 r260806  
     12020-04-27  Keith Miller  <keith_miller@apple.com>
     2
     3        stress/generator-containing-for-of-on-map.js and stress/generator-containing-for-of-on-set.js timing out on debug JSC bot
     4        https://bugs.webkit.org/show_bug.cgi?id=211095
     5
     6        Reviewed by Yusuke Suzuki.
     7
     8        Let's try making these tests shorter. Eager compilation should still be interesting with the shorter iterations.
     9
     10        * stress/generator-containing-for-of-on-map.js:
     11        * stress/generator-containing-for-of-on-set.js:
     12
    1132020-04-27  Yusuke Suzuki  <ysuzuki@apple.com>
    214
  • trunk/JSTests/stress/generator-containing-for-of-on-map.js

    r260323 r260806  
    1111let map = new Map();
    1212noInline(map[Symbol.iterator]().next);
    13 for (let i = 0; i < 1e2; ++i)
     13for (let i = 0; i < 12; ++i)
    1414    map.set([1,2,4,5,5], {});
    1515
    16 for (let i = 0; i < 1e5; ++i) {
     16for (let i = 0; i < 1e4; ++i) {
    1717    for (let v of find(map, i % 2)) { }
    1818}
  • trunk/JSTests/stress/generator-containing-for-of-on-set.js

    r260323 r260806  
    1111let set = new Set();
    1212noInline(set[Symbol.iterator]().next);
    13 for (let i = 0; i < 1e2; ++i)
     13for (let i = 0; i < 12; ++i)
    1414    set.add([1,2,4,5,5], {});
    1515
    16 for (let i = 0; i < 1e5; ++i) {
     16for (let i = 0; i < 1e4; ++i) {
    1717    for (let v of find(set, i % 2)) {
    1818        if (i % 2 !== 1)
Note: See TracChangeset for help on using the changeset viewer.