test262/implementation-contributed/javascriptcore/stress/unshiftCountSlowCase-correct-postCapacity.js
test262-automation e9a5a7f918 [javascriptcore-test262-automation] changes from git@github.com:WebKit/webkit.git at sha 949e26452cfa153a7f4afe593da97e2fe9e1b706 on Tue Jul 03 2018 14:35:15 GMT-0400 (Eastern Daylight Time) (#1620)
* [javascriptcore-test262-automation] changes from git@github.com:WebKit/webkit.git at sha 949e26452cfa153a7f4afe593da97e2fe9e1b706 on Tue Jul 03 2018 14:35:15 GMT-0400 (Eastern Daylight Time)
2018-07-03 15:59:58 -04:00

27 lines
587 B
JavaScript

//@ if $buildType == "release" && !$memoryLimited then runDefault else skip end
function temp(i) {
let a1 = [{}];
a1.foo = 20;
a1.foo1 = 20;
a1.foo2 = 20;
a1.foo3 = 20;
a1.foo4 = 20;
a1.foo5 = 20;
a1.foo6 = 20;
a1.foo8 = 20;
a1.foo10 = 20;
a1.foo11 = 20;
delete a1[0];
try {
let args = [-15, 1, 'foo', 20, 'bar'];
for (let j = 0; j < i; ++j)
args.push(j);
for (let i = 0; i < 2**31 - 1; ++i) {
Array.prototype.splice.apply(a1, args);
}
} catch(e) { }
}
let i = 62;
temp(i);