~ubuntu-branches/ubuntu/trusty/mozjs17/trusty

« back to all changes in this revision

Viewing changes to js/src/tests/ecma_5/Number/toString-radix-handling.js

  • Committer: Package Import Robot
  • Author(s): Rico Tzschichholz
  • Date: 2013-05-25 12:24:23 UTC
  • Revision ID: package-import@ubuntu.com-20130525122423-zmxucrhtensw90xy
Tags: upstream-17.0.0
ImportĀ upstreamĀ versionĀ 17.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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!");