summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/timeout/while-profiling.js
blob: f9f485ae4a2b74f4ca8e4632438be294583e6bce (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);