blob: 0544fb507966545aa6f03f6c219c1241e65af372 [file] [log] [blame]
//@ skip if $hostOS == "playstation" or $architecture == "arm"
//@ runDefault("--gcIncrementScale=100", "--gcIncrementBytes=10", "--numberOfGCMarkers=1")
let a = [];
for (let i = 0; i < 1000000; ++i) {
let o = {};
let p1 = `f${ (Math.random() * 10000000000) | 0 }`
let p2 = `f${ (Math.random() * 10000000000) | 0 }`
o[p1] = 20;
o[p2] = 42;
a.push(o);
}