js/src/tests/ecma_6/Math/cbrt-approx.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     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