summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1472734.js
blob: f88f3af1c682d6ab07a1f3ec527d935dd07bad21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// |jit-test| skip-if: !('oomTest' in this) || helperThreadCount() === 0

try {
    oomTest(function() {
      eval(`
        function eval(source) {
          offThreadCompileModuleToStencil(source);
          minorgc();
        }
        eval("");
      `);
    });
} catch (exc) {}