blob: 1c008f0d9449afccd79ee41f5c298b69a49664af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// |jit-test| exitstatus: 6; skip-if: !wasmIsSupported() || !getBuildConfiguration()['arm-simulator']
// Single-step profiling currently only works in the ARM simulator
// Don't include wasm.js in timeout tests: when wasm isn't supported, it will
// quit(0) which will cause the test to fail.
var code = wasmTextToBinary(`(module
(func (export "iloop")
(loop $top br $top)
)
)`);
enableGeckoProfiling();
enableSingleStepProfiling();
var i = new WebAssembly.Instance(new WebAssembly.Module(code));
timeout(.1);
i.exports.iloop();
assertEq(true, false);
|