summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/oomInOffTheadCompile.js
blob: 65a2fe443cb0d53a6cd673e7392f2ce29a88a10a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// |jit-test| skip-if: helperThreadCount() === 0

oomTest(() => {
    offThreadCompileToStencil(
        `
        function f(x) {
            if (x == 0)
                return "foobar";
            return 1 + f(x - 1);
        }
        f(5);
        `);
    var stencil = finishOffThreadStencil();
    evalStencil(stencil);
});