blob: d7bc83527a515b842baf715301288ee215ed2e9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// |jit-test| allow-oom
// We need allow-oom here because the debugger reports an uncaught exception if
// it hits OOM calling the exception unwind hook. This causes the shell to exit
// with the OOM reason.
if (!('oomTest' in this))
quit();
var g = newGlobal();
g.parent = this;
g.eval("new Debugger(parent).onExceptionUnwind = function() {}");
let finished = false;
oomTest(() => l, false);
|