summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/gc/bug-1259306.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/gc/bug-1259306.js')
-rw-r--r--js/src/jit-test/tests/gc/bug-1259306.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/gc/bug-1259306.js b/js/src/jit-test/tests/gc/bug-1259306.js
new file mode 100644
index 0000000000..fba5f71b6a
--- /dev/null
+++ b/js/src/jit-test/tests/gc/bug-1259306.js
@@ -0,0 +1,19 @@
+// |jit-test| skip-if: !('oomTest' in this)
+
+let runCount = 0;
+oomTest(() => {
+ if (runCount < 5) {
+ let lfGlobal = newGlobal();
+ var lfVarx = `
+ gczeal(8, 1);
+ try {
+ (5).replace(r, () => {});
+ } catch (x) {}
+ gczeal(0);
+ `;
+ lfGlobal.offThreadCompileToStencil(lfVarx);
+ var stencil = lfGlobal.finishOffThreadStencil();
+ lfGlobal.evalStencil(stencil);
+ runCount++;
+ }
+});