summaryrefslogtreecommitdiffstats
path: root/js/src/tests/non262/Math/asinh-exact.js
blob: 49463d01fc25b298ea0b228c783eb0180e2626a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Properties of Math.asinh that are guaranteed by the spec.

// If x is NaN, the result is NaN.
assertEq(Math.asinh(NaN), NaN);

// If x is +0, the result is +0.
assertEq(Math.asinh(+0), +0);

// If x is −0, the result is −0.
assertEq(Math.asinh(-0), -0);

// If x is +∞, the result is +∞.
assertEq(Math.asinh(Infinity), Infinity);

// If x is −∞, the result is −∞.
assertEq(Math.asinh(-Infinity), -Infinity);


reportCompare(0, 0, "ok");