diff options
Diffstat (limited to 'js/src/jit-test/tests/basic/offThreadCompileToStencil-02.js')
-rw-r--r-- | js/src/jit-test/tests/basic/offThreadCompileToStencil-02.js | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/basic/offThreadCompileToStencil-02.js b/js/src/jit-test/tests/basic/offThreadCompileToStencil-02.js new file mode 100644 index 0000000000..2273cb63dd --- /dev/null +++ b/js/src/jit-test/tests/basic/offThreadCompileToStencil-02.js @@ -0,0 +1,25 @@ +// |jit-test| skip-if: helperThreadCount() === 0 + +// Test offThreadCompileToStencil/evalStencil option handling. + +offThreadCompileToStencil("Error()"); +var stencil = finishOffThreadStencil(); +assertEq(!!evalStencil(stencil).stack.match(/^@<string>:1:1\n/), true); + +offThreadCompileToStencil("Error()", { fileName: "candelabra", lineNumber: 6502 }); +stencil = finishOffThreadStencil(); +assertEq(!!evalStencil(stencil).stack.match(/^@candelabra:6502:1\n/), true); + +var element = {}; +offThreadCompileToStencil("Error()"); // shouldn't crash +stencil = finishOffThreadStencil(); +evalStencil(stencil, { element }); + +var elementAttributeName = "molybdenum"; +elementAttributeName += + elementAttributeName + elementAttributeName + elementAttributeName; +offThreadCompileToStencil("Error()"); // shouldn't crash +stencil = finishOffThreadStencil(); +evalStencil(stencil, { + elementAttributeName, +}); |