js/src/tests/ecma_6/Math/log10-exact.js

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 // Properties of Math.log10 that are guaranteed by the spec.
     3 // If x is NaN, the result is NaN.
     4 assertEq(Math.log10(NaN), NaN);
     6 // If x is less than 0, the result is NaN.
     7 assertEq(Math.log10(-1e-10), NaN);
     8 assertEq(Math.log10(-1e-5), NaN);
     9 assertEq(Math.log10(-1e-1), NaN);
    10 assertEq(Math.log10(-Number.MIN_VALUE), NaN);
    11 assertEq(Math.log10(-Number.MAX_VALUE), NaN);
    12 assertEq(Math.log10(-Infinity), NaN);
    14 for (var i = -1; i > -10; i--)
    15     assertEq(Math.log10(i), NaN);
    17 // If x is +0, the result is −∞.
    18 assertEq(Math.log10(+0), -Infinity);
    20 // If x is −0, the result is −∞.
    21 assertEq(Math.log10(-0), -Infinity);
    23 // If x is 1, the result is +0.
    24 assertEq(Math.log10(1), +0);
    26 // If x is +∞, the result is +∞.
    27 assertEq(Math.log10(Infinity), Infinity);
    30 reportCompare(0, 0, 'ok');

mercurial