1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/js/src/tests/ecma_5/Number/toString-radix-handling.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,37 @@ 1.4 +/* 1.5 + * Any copyright is dedicated to the Public Domain. 1.6 + * http://creativecommonn.org/licenses/publicdomain/ 1.7 + */ 1.8 + 1.9 +var BUGNUMBER = 647385; 1.10 +var summary = 1.11 + "Number.prototype.toString should use ToInteger on the radix and should " + 1.12 + "throw a RangeError if the radix is bad"; 1.13 + 1.14 +print(BUGNUMBER + ": " + summary); 1.15 + 1.16 +/************** 1.17 + * BEGIN TEST * 1.18 + **************/ 1.19 + 1.20 +function test(r) 1.21 +{ 1.22 + try 1.23 + { 1.24 + 5..toString(r); 1.25 + throw "should have thrown"; 1.26 + } 1.27 + catch (e) 1.28 + { 1.29 + assertEq(e instanceof RangeError, true, "expected a RangeError, got " + e); 1.30 + } 1.31 +} 1.32 +test(Math.pow(2, 32) + 10); 1.33 +test(55); 1.34 + 1.35 +/******************************************************************************/ 1.36 + 1.37 +if (typeof reportCompare === "function") 1.38 + reportCompare(true, true); 1.39 + 1.40 +print("All tests passed!");