mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
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:
parent
63e8287f2b
commit
3c1d0e6100
@ -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);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user