summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1340010.js
blob: 22ceafce6f2fcdb2ae66dfcf507e1a19ab3681e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// |jit-test| skip-if: helperThreadCount() === 0
gczeal(0);

gc();
function weighted(wa) {
    var a = [];
    for (var i = 0; i < 30; ++i) {
        for (var j = 0; j < 20; ++j) {
            a.push(0);
        }
    }
    return a;
}
var statementMakers = weighted();
if (typeof oomTest == "function") {
    statementMakers = statementMakers.concat([function (d, b) {
        return "oomTest(" + makeFunction(d - 1, b) + ")";
    }, ]);
}
deterministicgc(true);
startgc(9469, "shrinking");
offThreadCompileToStencil("");