Turning some strict comparisons in tests/jerry/math_log.js and tests/jerry/sqrt.js into range check comparisons.

This commit is contained in:
Ruben Ayrapetyan
2014-10-23 20:34:43 +04:00
parent 81ae0010ac
commit 1a6ca3108b
2 changed files with 6 additions and 3 deletions
+4 -2
View File
@@ -19,8 +19,10 @@ assert(Math['sqrt'] (0.0) === 0.0);
assert(Math['sqrt'] (Infinity) === Infinity);
assert(Math['sqrt'] (1.0) === 1.0);
assert(Math['sqrt'] (2.0) === Math['SQRT2']);
assert(Math['sqrt'] (0.5) === Math['SQRT1_2']);
assert(Math['sqrt'] (2.0) >= Math['SQRT2'] * 0.999999);
assert(Math['sqrt'] (2.0) <= Math['SQRT2'] * 1.000001);
assert(Math['sqrt'] (0.5) >= Math['SQRT1_2'] * 0.999999);
assert(Math['sqrt'] (0.5) <= Math['SQRT1_2'] * 1.000001);
var sqrt_1e38 = Math['sqrt'] (1.0e+38);
assert(sqrt_1e38 > 0.999999 * 1.0e+19);