mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 469927 - in order to exclude randam passes on platforms that do not support jit, require jit time to be less than 1/2 non jit time in order to pass.
This commit is contained in:
parent
e3d80f9559
commit
0cf0335d8a
@ -71,7 +71,7 @@ function test()
|
||||
print('time: nonjit = ' + timenonjit + ', jit = ' + timejit);
|
||||
|
||||
expect = true;
|
||||
actual = timejit < timenonjit;
|
||||
actual = timejit < timenonjit/2;
|
||||
|
||||
reportCompare(expect, actual, summary);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user