diff options
Diffstat (limited to '')
-rw-r--r-- | js/src/jit-test/tests/saved-stacks/bug-1149495.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/saved-stacks/bug-1149495.js b/js/src/jit-test/tests/saved-stacks/bug-1149495.js new file mode 100644 index 0000000000..996f606f13 --- /dev/null +++ b/js/src/jit-test/tests/saved-stacks/bug-1149495.js @@ -0,0 +1,7 @@ +try { + offThreadCompileToStencil('Error()', { lineNumber: (4294967295)}); + var stencil = finishOffThreadStencil(); + evalStencil(stencil).stack; +} catch (e) { + // Ignore "Error: Can't use offThreadCompileToStencil with --no-threads" +} |