summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/asm.js/testDebugModeDisables.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/asm.js/testDebugModeDisables.js')
-rw-r--r--js/src/jit-test/tests/asm.js/testDebugModeDisables.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/asm.js/testDebugModeDisables.js b/js/src/jit-test/tests/asm.js/testDebugModeDisables.js
new file mode 100644
index 0000000000..9c04cbf264
--- /dev/null
+++ b/js/src/jit-test/tests/asm.js/testDebugModeDisables.js
@@ -0,0 +1,9 @@
+// |jit-test|
+
+load(libdir + "asm.js");
+
+// Turn on debugging for the current global.
+var g = newGlobal({newCompartment: true});
+var dbg = new g.Debugger(this);
+
+assertAsmTypeFail("'use asm'; function f() {} return f");