aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.2_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.2_T2.js')
-rw-r--r--test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.2_T2.js131
1 files changed, 0 insertions, 131 deletions
diff --git a/test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.2_T2.js b/test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.2_T2.js
deleted file mode 100644
index 42e8494bf..000000000
--- a/test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.2_T2.js
+++ /dev/null
@@ -1,131 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S7.8.4_A4.2_T2;
- * @section: 7.8.4;
- * @assertion: CharacterEscapeSequnce :: NonEscapeSequence;
- * @description: NonEscapeSequence :: ENGLISH CAPITAL ALPHABET;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S7.8.4_A4.2_T2",
-
-path: "TestCases/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.2_T2.js",
-
-assertion: "CharacterEscapeSequnce :: NonEscapeSequence",
-
-description: "NonEscapeSequence :: ENGLISH CAPITAL ALPHABET",
-
-test: function testcase() {
- //CHECK#A-Z
-if ("A" !== "\A") {
- $ERROR('#A');
-}
-
-if ("B" !== "\B") {
- $ERROR('#B');
-}
-
-if ("C" !== "\C") {
- $ERROR('#C');
-}
-
-if ("D" !== "\D") {
- $ERROR('#D');
-}
-
-if ("E" !== "\E") {
- $ERROR('#E');
-}
-
-if ("F" !== "\F") {
- $ERROR('#F');
-}
-
-if ("G" !== "\G") {
- $ERROR('#G');
-}
-
-if ("H" !== "\H") {
- $ERROR('#H');
-}
-
-if ("I" !== "\I") {
- $ERROR('#I');
-}
-
-if ("J" !== "\J") {
- $ERROR('#J');
-}
-
-if ("K" !== "\K") {
- $ERROR('#K');
-}
-
-if ("L" !== "\L") {
- $ERROR('#L');
-}
-
-if ("M" !== "\M") {
- $ERROR('#M');
-}
-
-if ("N" !== "\N") {
- $ERROR('#N');
-}
-
-if ("O" !== "\O") {
- $ERROR('#O');
-}
-
-if ("P" !== "\P") {
- $ERROR('#P');
-}
-
-if ("Q" !== "\Q") {
- $ERROR('#Q');
-}
-
-if ("R" !== "\R") {
- $ERROR('#R');
-}
-
-if ("S" !== "\S") {
- $ERROR('#S');
-}
-
-if ("T" !== "\T") {
- $ERROR('#T');
-}
-
-if ("U" !== "\U") {
- $ERROR('#U');
-}
-
-if ("V" !== "\V") {
- $ERROR('#V');
-}
-
-if ("W" !== "\W") {
- $ERROR('#W');
-}
-
-if ("X" !== "\X") {
- $ERROR('#X');
-}
-
-if ("Y" !== "\Y") {
- $ERROR('#Y');
-}
-
-if ("Z" !== "\Z") {
- $ERROR('#Z');
-}
-
- }
-});
-