summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Number/prototype/toString/S15.7.4.2_A3_T01.js
blob: 665dd22563725e378799a593f4b7699c909f5608 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: "toString: radix should be an integer between 2 and 36"
es5id: 15.7.4.2_A3_T01
description: radix is 1
---*/

try {
  var n = Number.prototype.toString(1);
  throw new Test262Error('#1: Number.prototype.toString(1) should throw an Error');
}
catch (e) {}

try {
  var n = (new Number()).toString(1);
  throw new Test262Error('#2: (new Number()).toString(1) should throw an Error');
}
catch (e) {}

try {
  var n = (new Number(0)).toString(1);
  throw new Test262Error('#3: (new Number(0)).toString(1) should throw an Error');
}
catch (e) {}

try {
  var n = (new Number(-1)).toString(1);
  throw new Test262Error('#4: (new Number(-1)).toString(1) should throw an Error');
}
catch (e) {}

try {
  var n = (new Number(1)).toString(1);
  throw new Test262Error('#5: (new Number(1)).toString(1) should throw an Error');
}
catch (e) {}

try {
  var n = (new Number(Number.NaN)).toString(1);
  throw new Test262Error('#6: (new Number(Number.NaN)).toString(1) should throw an Error');
}
catch (e) {}

try {
  var n = (new Number(Number.POSITIVE_INFINITY)).toString(1);
  throw new Test262Error('#7: (new Number(Number.POSITIVE_INFINITY)).toString(1) should throw an Error');
}
catch (e) {}

try {
  var n = (new Number(Number.NEGATIVE_INFINITY)).toString(1);
  throw new Test262Error('#8: (new Number(Number.NEGATIVE_INFINITY)).toString(1) should throw an Error');
}
catch (e) {}

reportCompare(0, 0);