From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../wasm/timeout/interrupt-several-instances.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 js/src/jit-test/tests/wasm/timeout/interrupt-several-instances.js (limited to 'js/src/jit-test/tests/wasm/timeout/interrupt-several-instances.js') diff --git a/js/src/jit-test/tests/wasm/timeout/interrupt-several-instances.js b/js/src/jit-test/tests/wasm/timeout/interrupt-several-instances.js new file mode 100644 index 0000000000..58dc642d16 --- /dev/null +++ b/js/src/jit-test/tests/wasm/timeout/interrupt-several-instances.js @@ -0,0 +1,21 @@ +// |jit-test| exitstatus: 6; skip-if: !wasmIsSupported() + +// Don't include wasm.js in timeout tests: when wasm isn't supported, it will +// quit(0) which will cause the test to fail. + +load(libdir + "asm.js"); + +var code = ` + var out = ffi.out; + function f() { + out(); + } + return f; +`; + +var ffi = {}; +ffi.out = new WebAssembly.Instance(new WebAssembly.Module(wasmTextToBinary('(module (func (export "f") (loop $top (br $top))))'))).exports.f; + +timeout(1); +asmLink(asmCompile('glob', 'ffi', USE_ASM + code), this, ffi)(); +assertEq(true, false); -- cgit v1.2.3