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:
Bob Clary 2009-02-20 16:57:01 -08:00
parent e3d80f9559
commit 0cf0335d8a

View File

@ -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);