From 0cf0335d8a11936cef07a4748512e95211daf933 Mon Sep 17 00:00:00 2001 From: Bob Clary Date: Fri, 20 Feb 2009 16:57:01 -0800 Subject: [PATCH] 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. --- js/tests/js1_8_1/trace/regress-469927.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/tests/js1_8_1/trace/regress-469927.js b/js/tests/js1_8_1/trace/regress-469927.js index 4d0651f0dbd..1c3579a2bac 100644 --- a/js/tests/js1_8_1/trace/regress-469927.js +++ b/js/tests/js1_8_1/trace/regress-469927.js @@ -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);