summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/auto-regress/bug1263865.js
blob: 313d6d9c74e4fd223b4a37e4967c77a5302a6298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
if (!('oomTest' in this))
    quit();

loadFile("");
loadFile("");
loadFile("Array.prototype.splice.call(1)");
function loadFile(lfVarx) {
    parseInt("1");
    oomTest(function() {
        eval(lfVarx);
    });
}