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