js/src/tests/ecma_5/Number/toString-radix-handling.js

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:c550e924d489
1 /*
2 * Any copyright is dedicated to the Public Domain.
3 * http://creativecommonn.org/licenses/publicdomain/
4 */
5
6 var BUGNUMBER = 647385;
7 var summary =
8 "Number.prototype.toString should use ToInteger on the radix and should " +
9 "throw a RangeError if the radix is bad";
10
11 print(BUGNUMBER + ": " + summary);
12
13 /**************
14 * BEGIN TEST *
15 **************/
16
17 function test(r)
18 {
19 try
20 {
21 5..toString(r);
22 throw "should have thrown";
23 }
24 catch (e)
25 {
26 assertEq(e instanceof RangeError, true, "expected a RangeError, got " + e);
27 }
28 }
29 test(Math.pow(2, 32) + 10);
30 test(55);
31
32 /******************************************************************************/
33
34 if (typeof reportCompare === "function")
35 reportCompare(true, true);
36
37 print("All tests passed!");

mercurial