blob: 5b1cdd4192344c086761a1a254bd51779d19062e (
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
|
// |jit-test| exitstatus: 6; skip-if: !wasmDebuggingEnabled()
// Don't include wasm.js in timeout tests: when wasm isn't supported, it will
// quit(0) which will cause the test to fail.
newGlobal({newCompartment: true}).Debugger().addDebuggee(this);
var t = new WebAssembly.Table({
initial: 1,
element: "anyfunc"
});
new WebAssembly.Instance(new WebAssembly.Module(wasmTextToBinary(`
(module
(import "imports" "t" (table 1 funcref))
(func $iloop loop $top br $top end)
(elem (i32.const 0) $iloop))
`)), { imports: { t } });
outer = new WebAssembly.Instance(new WebAssembly.Module(wasmTextToBinary(`
(module
(import "imports" "t" (table 1 funcref))
(type $v2v (func))
(func (export "run")
i32.const 0
call_indirect (type $v2v))
)`)), { imports: { t } });
setJitCompilerOption('simulator.always-interrupt', 1);
timeout(1);
outer.exports.run();
|