mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 867856 - Fix intermittent timeout of bug743094.js test case. r=h4writer
This commit is contained in:
parent
dac3810b4d
commit
8b65d18c25
@ -4,8 +4,14 @@
|
|||||||
// Flags: --ion-eager
|
// Flags: --ion-eager
|
||||||
//
|
//
|
||||||
|
|
||||||
gczeal(2)
|
var i = 0;
|
||||||
|
|
||||||
|
gczeal(2);
|
||||||
function test() {
|
function test() {
|
||||||
typeof (new test("1")) != 'function'
|
if (i++ > 10000)
|
||||||
|
return "function";
|
||||||
|
var res = typeof (new test("1")) != 'function';
|
||||||
|
return res ? "function" : "string";
|
||||||
}
|
}
|
||||||
|
|
||||||
test();
|
test();
|
||||||
|
Loading…
Reference in New Issue
Block a user