From 3c1d0e61002c5424d2b882a8044b75a11c0dd58c Mon Sep 17 00:00:00 2001 From: repasics <44167109+repasics@users.noreply.github.com> Date: Tue, 30 Oct 2018 15:25:54 +0100 Subject: [PATCH] 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 --- tests/jerry/math-pow.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tests/jerry/math-pow.js b/tests/jerry/math-pow.js index 8bd449e75..0b80ff8d5 100644 --- a/tests/jerry/math-pow.js +++ b/tests/jerry/math-pow.js @@ -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);