diff options
Diffstat (limited to 'js/src/jit-test/tests/basic/bug1236476.js')
-rw-r--r-- | js/src/jit-test/tests/basic/bug1236476.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/basic/bug1236476.js b/js/src/jit-test/tests/basic/bug1236476.js new file mode 100644 index 0000000000..4e34a0a762 --- /dev/null +++ b/js/src/jit-test/tests/basic/bug1236476.js @@ -0,0 +1,18 @@ +// |jit-test| allow-oom; allow-unhandlable-oom +// 1236476 + +if (typeof oomTest !== 'function' || + typeof offThreadCompileToStencil !== 'function' || + typeof finishOffThreadStencil !== 'function' || + typeof evalStencil !== 'function') + quit(); + +oomTest(() => { + offThreadCompileToStencil(` + "use asm"; + return assertEq; + `); + var stencil = finishOffThreadStencil(); + evalStencil(); +}); + |