Turning some strict comparisons in tests/jerry/math_log.js and tests/jerry/sqrt.js into range check comparisons.
This commit is contained in:
+4
-2
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user