blob: 4654a93fae7004e1ed1f42b32927ecf5065d0bf6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
// |jit-test| test-also=--wasm-compiler=optimizing; error: TestComplete
if (!wasmDebuggingEnabled())
throw "TestComplete";
let module = new WebAssembly.Module(wasmTextToBinary(`
(module
(import "global" "func" (func))
(func (export "test")
call 0 ;; calls the import, which is func #0
)
)
`));
let imports = {
global: {
func: function () {
let g = newGlobal({newCompartment: true});
let dbg = new Debugger(g);
dbg.onExceptionUnwind = function (frame) {
frame.older;
};
g.eval("throw new Error();");
}
}
};
let instance = new WebAssembly.Instance(module, imports);
try {
instance.exports.test();
assertEq(false, true);
} catch (e) {
assertEq(e.constructor.name, 'Error');
}
throw "TestComplete";
|