summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/parseInt/S15.1.2.2_A3.2_T3.js
blob: 21008b91efd849bf107e3f74ae39c86fddf4185c (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: Operator use ToInt32
esid: sec-parseint-string-radix
description: ToInt32 use modulo
---*/

assert.sameValue(
  parseInt("11", 4294967298),
  parseInt("11", 2),
  'parseInt("11", 4294967298) must return the same value returned by parseInt("11", 2)'
);
assert.sameValue(
  parseInt("11", 4294967296),
  parseInt("11", 10),
  'parseInt("11", 4294967296) must return the same value returned by parseInt("11", 10)'
);

assert.sameValue(parseInt("11", -2147483650), NaN, 'parseInt("11", -2147483650) must return NaN');

assert.sameValue(
  parseInt("11", -4294967294),
  parseInt("11", 2),
  'parseInt("11", -4294967294) must return the same value returned by parseInt("11", 2)'
);

reportCompare(0, 0);