diff options
Diffstat (limited to 'js/src/jit-test/tests/parser/warning-oom.js')
-rw-r--r-- | js/src/jit-test/tests/parser/warning-oom.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/parser/warning-oom.js b/js/src/jit-test/tests/parser/warning-oom.js new file mode 100644 index 0000000000..baf91cb9c9 --- /dev/null +++ b/js/src/jit-test/tests/parser/warning-oom.js @@ -0,0 +1,7 @@ +// |jit-test| skip-if: !('oomTest' in this) + +// OOM during reporting warning should be handled. + +oomTest(function(){ + new Function("return; 0;"); +}); |