blob: f6ab5e98bb59563f0c61e22df0a6475abaced5a9 [file] [log] [blame]
//@ skip if $hostOS == "playstation" || ($memoryLimited and not ["mips", "arm"].include?($architecture))
//@ 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);
}