js/src/tests/ecma_6/Math/cbrt-approx.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 assertEq(Math.cbrt(1), 1);
     2 assertEq(Math.cbrt(-1), -1);
     4 var sloppy_tolerance = 200;  // FIXME
     6 assertNear(Math.cbrt(1e-300), 1e-100, sloppy_tolerance);
     7 assertNear(Math.cbrt(-1e-300), -1e-100, sloppy_tolerance);
     9 var cbrt_data = [
    10     [ Math.E, 1.3956124250860895 ], 
    11     [ Math.PI, 1.4645918875615231 ], 
    12     [ Math.LN2, 0.8849970445005177 ], 
    13     [ Math.SQRT2, 1.1224620483093728 ]
    14 ];
    16 for (var [x, y] of cbrt_data)
    17     assertNear(Math.cbrt(x), y, sloppy_tolerance);
    19 reportCompare(0, 0, "ok");

mercurial