summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/xdr/bug1108603.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/xdr/bug1108603.js')
-rw-r--r--js/src/jit-test/tests/xdr/bug1108603.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/xdr/bug1108603.js b/js/src/jit-test/tests/xdr/bug1108603.js
new file mode 100644
index 000000000..54ba21e79
--- /dev/null
+++ b/js/src/jit-test/tests/xdr/bug1108603.js
@@ -0,0 +1,9 @@
+var caught = false;
+try {
+ evaluate(cacheEntry(""), {saveBytecode: {value: true}, global: this});
+ [[0]];
+} catch (err) {
+ caught = true;
+ assertEq(err.message, "compartment cannot save singleton anymore.");
+}
+assertEq(caught, true); \ No newline at end of file