js/src/tests/ecma_6/Number/15.7.3.7-EPSILON.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/ecma_6/Number/15.7.3.7-EPSILON.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,24 @@
     1.4 +// Any copyright is dedicated to the Public Domain.
     1.5 +// http://creativecommons.org/licenses/publicdomain/
     1.6 +
     1.7 +//-----------------------------------------------------------------------------
     1.8 +var BUGNUMBER = 885798;
     1.9 +var summary = "ES6 (draft May 2013) 15.7.3.7 Number.EPSILON";
    1.10 +
    1.11 +print(BUGNUMBER + ": " + summary);
    1.12 +
    1.13 +/**************
    1.14 + * BEGIN TEST *
    1.15 + **************/
    1.16 +
    1.17 +// Test value
    1.18 +assertEq(Number.EPSILON, Math.pow(2, -52));
    1.19 +
    1.20 +// Test property attributes
    1.21 +var descriptor = Object.getOwnPropertyDescriptor(Number, 'EPSILON');
    1.22 +assertEq(descriptor.writable, false);
    1.23 +assertEq(descriptor.configurable, false);
    1.24 +assertEq(descriptor.enumerable, false);
    1.25 +
    1.26 +if (typeof reportCompare === "function")
    1.27 +  reportCompare(true, true);

mercurial