summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/bug1216261.js
blob: 71f11fe802c7c8a2980579ac06e9d3714b79f9ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// |jit-test| exitstatus: 3

if (!('oomAfterAllocations' in this))
    quit(3);

var g = newGlobal();
var dbg = new Debugger(g);
dbg.onDebuggerStatement = function(frame) {
    oomAfterAllocations(5);
    // OOMs here, and possibly again in the error reporter when trying to
    // report the OOM, so the shell just exits with code 3.
    frame.older.eval("escaped = function() { return y }");
}
g.eval("function h() { debugger }");
g.eval("(function () { var y = {p:42}; h(); yield })().next();");