summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/debug/bug1106719.js
blob: 4f42975cfbc1d2639370366eadde0bd8d9000a8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// |jit-test| allow-oom; allow-unhandlable-oom; allow-overrecursed; skip-if: getBuildConfiguration()['android']
// Disabled on Android due to harness problems (Bug 1532654)

g = newGlobal({newCompartment: true})
g.parent = this
g.eval("Debugger(parent).onExceptionUnwind=(function(){})")
gcparam("maxBytes", gcparam("gcBytes"))
function f() {
    f()
    y(arguments)
}
f()