bug 470739 - 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
Родитель 16bbb9abad
Коммит 216280b624
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -73,7 +73,7 @@ function test()
print('time: nonjit = ' + timenonjit + ', jit = ' + timejit);
expect = true;
actual = timejit < timenonjit;
actual = timejit < timenonjit/2;
reportCompare(expect, actual, summary);