summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug1263879.js
blob: 96ce00eae947f0d9f42b31cad99c389e34bc5518 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
if (!('oomTest' in this))
    quit();

var lines = `



"".replace([[2], 3])
`.split('\n');
var code = "";
while (true) {
    var line = lines.shift();
    if (line == null)
        break;
    loadFile();
    code += line + "\n";
}
loadFile(code);
function loadFile(code) {
    oomTest(() => eval(code));
}