summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug1236476.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/basic/bug1236476.js')
-rw-r--r--js/src/jit-test/tests/basic/bug1236476.js16
1 files changed, 16 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 000000000..f9f2b3d5c
--- /dev/null
+++ b/js/src/jit-test/tests/basic/bug1236476.js
@@ -0,0 +1,16 @@
+// |jit-test| allow-oom; allow-unhandlable-oom
+// 1236476
+
+if (typeof oomTest !== 'function' ||
+ typeof offThreadCompileScript !== 'function' ||
+ typeof runOffThreadScript !== 'function')
+ quit();
+
+oomTest(() => {
+ offThreadCompileScript(`
+ "use asm";
+ return assertEq;
+ `);
+ runOffThreadScript();
+});
+