Enable test cases (#2566)

Enable previously disabled test cases in math-pow.js. Everything works as expected.

JerryScript-DCO-1.0-Signed-off-by: Csaba Repasi repasics@inf.u-szeged.hu
This commit is contained in:
repasics 2018-10-30 15:25:54 +01:00 committed by Zoltan Herczeg
parent 63e8287f2b
commit 3c1d0e6100

View File

@ -14,7 +14,7 @@
assert ( isNaN (Math.pow (0.0 /* any number */, NaN)) );
assert ( Math.pow (NaN, 0.0) === 1.0 );
// assert ( Math.pow (NaN, -0.0) === 1.0 );
assert ( Math.pow (NaN, -0.0) === 1.0 );
assert ( isNaN (Math.pow (NaN, 1.0 /* any non-zero number */)) );
assert ( Math.pow (2.0, Infinity) === Infinity );
assert ( Math.pow (2.0, -Infinity) === 0.0 );
@ -27,17 +27,17 @@ assert ( Math.pow (Infinity, -1.0) === 0 );
assert ( Math.pow (-Infinity, 3.0) === -Infinity );
assert ( Math.pow (-Infinity, 2.0) === Infinity );
assert ( Math.pow (-Infinity, 2.5) === Infinity );
// assert ( Math.pow (-Infinity, -3.0) === -0.0 );
assert ( Math.pow (-Infinity, -3.0) === -0.0 );
assert ( Math.pow (-Infinity, -2.0) === 0.0 );
assert ( Math.pow (-Infinity, -2.5) === 0.0 );
assert ( Math.pow (0.0, 1.2) === 0.0 );
assert ( Math.pow (0.0, -1.2) === Infinity );
// assert ( Math.pow (-0.0, 3.0) === -0.0 );
// assert ( Math.pow (-0.0, 2.0) === 0.0 );
// assert ( Math.pow (-0.0, 2.5) === 0.0 );
// assert ( Math.pow (-0.0, -3.0) === -Infinity );
// assert ( Math.pow (-0.0, -2.0) === Infinity );
// assert ( Math.pow (-0.0, -2.5) === Infinity );
assert ( Math.pow (-0.0, 3.0) === -0.0 );
assert ( Math.pow (-0.0, 2.0) === 0.0 );
assert ( Math.pow (-0.0, 2.5) === 0.0 );
assert ( Math.pow (-0.0, -3.0) === -Infinity );
assert ( Math.pow (-0.0, -2.0) === Infinity );
assert ( Math.pow (-0.0, -2.5) === Infinity );
assert ( isNaN (Math.pow (-3, 2.5)) );
assert(Math.pow (-2, 2) === 4);