blob: 324de24004f344a541a357d171bb2817fa868390 (
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
|
// |jit-test| skip-if: helperThreadCount() === 0
// Debugger.allowUnobservedAsmJS with off-thread parsing.
load(libdir + "asm.js");
var g = newGlobal({newCompartment: true});
g.parent = this;
g.eval("dbg = new Debugger(parent);");
assertEq(g.dbg.allowUnobservedAsmJS, false);
enableLastWarning();
var asmFunStr = USE_ASM + 'function f() {} return f';
offThreadCompileScript("(function() {" + asmFunStr + "})");
runOffThreadScript();
var msg = getLastWarning().message;
assertEq(msg === "asm.js type error: Disabled by debugger" ||
msg === "asm.js type error: Disabled by lack of a JIT compiler" ||
msg === "asm.js type error: Disabled by 'asmjs' runtime option" ||
msg === "asm.js type error: Disabled by lack of compiler support",
true);
|