summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1216157.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/ion/bug1216157.js')
-rw-r--r--js/src/jit-test/tests/ion/bug1216157.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug1216157.js b/js/src/jit-test/tests/ion/bug1216157.js
new file mode 100644
index 0000000000..1ec9497e40
--- /dev/null
+++ b/js/src/jit-test/tests/ion/bug1216157.js
@@ -0,0 +1,12 @@
+// |jit-test| skip-if: !('oomAfterAllocations' in this); allow-oom
+
+gcslice(0); // Start IGC, but don't mark anything.
+function f(str) {
+ for (var i = 0; i < 10; i++) {
+ arr = /foo(ba(r))?/.exec(str);
+ var x = arr[oomAfterAllocations(100)] + " " + arr[1] + " " + 1899;
+ }
+}
+try {
+ f("foo");
+} catch(e) {}