js/src/tests/ecma_6/Number/parseInt-default-to-decimal.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/parseInt-default-to-decimal.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,30 @@
     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 = 886949;
     1.9 +var summary = "ES6 (draft May 2013) 15.7.3.9 Number.parseInt(string, radix)." +
    1.10 +			  " Verify that Number.parseInt defaults to decimal.";
    1.11 +
    1.12 +print(BUGNUMBER + ": " + summary);
    1.13 +
    1.14 +/**************
    1.15 + * BEGIN TEST *
    1.16 + **************/
    1.17 +
    1.18 +assertEq(Number.parseInt("08"), 8);
    1.19 +assertEq(Number.parseInt("09"), 9);
    1.20 +assertEq(Number.parseInt("014"), 14);
    1.21 +
    1.22 +function strictParseInt(s) { "use strict"; return Number.parseInt(s); }
    1.23 +
    1.24 +assertEq(strictParseInt("08"), 8);
    1.25 +assertEq(strictParseInt("09"), 9);
    1.26 +assertEq(strictParseInt("014"), 14);
    1.27 +
    1.28 +/******************************************************************************/
    1.29 +
    1.30 +if (typeof reportCompare === "function")
    1.31 +  reportCompare(true, true);
    1.32 +
    1.33 +print("All tests passed!");

mercurial