summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/parseInt/S15.1.2.2_A7.1_T2.js
blob: 3ee68cc1df349a3aefd9e9e7864e206d55005170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: If Z is empty, return NaN
esid: sec-parseint-string-radix
description: x is not a radix-R digit
---*/

assert.sameValue(parseInt("$0x"), NaN, 'parseInt("$0x") must return NaN');
assert.sameValue(parseInt("$0X"), NaN, 'parseInt("$0X") must return NaN');
assert.sameValue(parseInt("$$$"), NaN, 'parseInt("$$$") must return NaN');
assert.sameValue(parseInt(""), NaN, 'parseInt("") must return NaN');
assert.sameValue(parseInt(" "), NaN, 'parseInt(" ") must return NaN');

reportCompare(0, 0);