summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/oomInExceptionHandlerBailout.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/gc/oomInExceptionHandlerBailout.js')
-rw-r--r--js/src/jit-test/tests/gc/oomInExceptionHandlerBailout.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/gc/oomInExceptionHandlerBailout.js b/js/src/jit-test/tests/gc/oomInExceptionHandlerBailout.js
new file mode 100644
index 0000000000..d5c8f29b27
--- /dev/null
+++ b/js/src/jit-test/tests/gc/oomInExceptionHandlerBailout.js
@@ -0,0 +1,14 @@
+// |jit-test| skip-if: !('oomTest' in this)
+oomTest(() => {
+ let x = 0;
+ try {
+ for (let i = 0; i < 100; i++) {
+ if (i == 99)
+ throw "foo";
+ x += i;
+ }
+ } catch (e) {
+ x = 0;
+ }
+ return x;
+});