diff options
Diffstat (limited to 'js/src/jit-test/tests/wasm/regress/oom-init.js')
-rw-r--r-- | js/src/jit-test/tests/wasm/regress/oom-init.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/wasm/regress/oom-init.js b/js/src/jit-test/tests/wasm/regress/oom-init.js new file mode 100644 index 000000000..24719d316 --- /dev/null +++ b/js/src/jit-test/tests/wasm/regress/oom-init.js @@ -0,0 +1,24 @@ +// |jit-test| slow; allow-oom + +if (typeof oomTest !== 'function' || !wasmIsSupported()) + quit(); + +Object.getOwnPropertyNames(this); +s = newGlobal(); +evalcx("\ + /x/;\ + oomTest(function() {\ + this[\"\"];\ + void 0;\ + Object.freeze(this);\ + l(undefined)();\ + O;\ + t;\ + 0;\ + ({e});\ + i;\ + 0;\ + ({ z: p ? 0 : 0});\ + s;\ + });\ +", s); |