author | Cosmin Sabou <csabou@mozilla.com> |
Thu, 28 Feb 2019 18:08:04 +0200 | |
changeset 461729 | fdd37ef2117ba74c8eb64eaaaa8e9d4d59bce0f7 |
parent 461728 | 1bc807fb4c895d326aafc4a5bc5c9239c093b432 |
child 461730 | 738bde54c69ca1fc4a1e7d194a245915e3a83850 |
push id | 35627 |
push user | opoprus@mozilla.com |
push date | Thu, 28 Feb 2019 21:44:07 +0000 |
treeherder | mozilla-central@db533ea3d561 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1530641 |
milestone | 67.0a1 |
backs out | c21e3a9d44571587b757ab279c6876bba9e5be83 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
js/src/jit-test/tests/wasm/regress/debugger-no-script.js | file | annotate | diff | comparison | revisions |
deleted file mode 100644 --- a/js/src/jit-test/tests/wasm/regress/debugger-no-script.js +++ /dev/null @@ -1,19 +0,0 @@ -// |jit-test| skip-if: !wasmDebugSupport(); exitstatus:3 - -function userError() {}; - -let g = newGlobal({newCompartment: true}); -let dbg = new Debugger(g); - -g.eval(` - var wasm = wasmTextToBinary('(module (func (export "test") (nop)))'); - var m = new WebAssembly.Instance(new WebAssembly.Module(wasm)); -`); - -dbg.onEnterFrame = function(frame) { - if (frame.type == "wasmcall") { - throw new userError() - } -} - -result = g.eval("m.exports.test()");