summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/literals/numeric/S7.8.3_A5.1_T7.js
blob: cc9cb770db416c36442d58e13e15e2916176682a (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: "DecimalLiteral :: HexIntegerLiteral"
es5id: 7.8.3_A5.1_T7
description: "HexIntegerLiteral :: 0x one of a, b, c, d, e, f"
---*/

//CHECK#a
if (0xa !== 10) {
  throw new Test262Error('#a: 0xa === 10');
}

//CHECK#b
if (0xb !== 11) {
  throw new Test262Error('#b: 0xb === 11');
}

//CHECK#c
if (0xc !== 12) {
  throw new Test262Error('#c: 0xc === 12');
}

//CHECK#d
if (0xd !== 13) {
  throw new Test262Error('#d: 0xd === 13');
}

//CHECK#e
if (0xe !== 14) {
  throw new Test262Error('#e: 0xe === 14');
}

//CHECK#f
if (0xf !== 15) {
  throw new Test262Error('#f: 0xf === 15');
}

reportCompare(0, 0);