summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/literals/string/S7.8.4_A4.2_T4.js
blob: 6c40a475703e174366f033128afa7a15ffbfe150 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: "CharacterEscapeSequnce :: NonEscapeSequence"
es5id: 7.8.4_A4.2_T4
description: "NonEscapeSequence :: ENGLISH SMALL ALPHABET"
---*/

//CHECK#a-z without b, f, n, r, t, v, x, u

if ("a" !== "\a") {
  throw new Test262Error('#a');
}

if ("c" !== "\c") {
  throw new Test262Error('#c');
}

if ("d" !== "\d") {
  throw new Test262Error('#d');
}

if ("e" !== "\e") {
  throw new Test262Error('#e');
}

if ("g" !== "\g") {
  throw new Test262Error('#g');
}

if ("h" !== "\h") {
  throw new Test262Error('#h');
}

if ("i" !== "\i") {
  throw new Test262Error('#i');
}

if ("j" !== "\j") {
  throw new Test262Error('#j');
}

if ("k" !== "\k") {
  throw new Test262Error('#k');
}

if ("l" !== "\l") {
  throw new Test262Error('#l');
}

if ("m" !== "\m") {
  throw new Test262Error('#m');
}


if ("o" !== "\o") {
  throw new Test262Error('#o');
}

if ("p" !== "\p") {
  throw new Test262Error('#p');
}

if ("q" !== "\q") {
  throw new Test262Error('#q');
}

if ("s" !== "\s") {
  throw new Test262Error('#s');
}

if ("w" !== "\w") {
  throw new Test262Error('#w');
}

if ("y" !== "\y") {
  throw new Test262Error('#y');
}

if ("z" !== "\z") {
  throw new Test262Error('#z');
}

reportCompare(0, 0);