summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/parseInt/S15.1.2.2_A3.2_T2.js
blob: cbfdf8119d7faf38adf0c04686fbc488effcb6f2 (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
// 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 floor
---*/

assert.sameValue(parseInt("11", 2.1), parseInt("11", 2), 'parseInt("11", 2.1) must return the same value returned by parseInt("11", 2)');
assert.sameValue(parseInt("11", 2.5), parseInt("11", 2), 'parseInt("11", 2.5) must return the same value returned by parseInt("11", 2)');
assert.sameValue(parseInt("11", 2.9), parseInt("11", 2), 'parseInt("11", 2.9) must return the same value returned by parseInt("11", 2)');

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

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

reportCompare(0, 0);