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
+2 -1
View File
@@ -19,7 +19,8 @@ assert( isNaN (Math.log (-Infinity)) );
assert( Math.log (0) === -Infinity );
assert( Math.log (1) === 0 );
assert( Math.log (Infinity) === Infinity );
assert( Math.log (2) === Math.LN2 );
assert( Math.log (2) >= Math.LN2 * 0.999999 );
assert( Math.log (2) <= Math.LN2 * 1.000001 );
var very_close_to_1_but_greater = 1.0000001;
assert( very_close_to_1_but_greater > 1.0 );