aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.2_T6.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_T6.js')
-rw-r--r--test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.2_T6.js160
1 files changed, 0 insertions, 160 deletions
diff --git a/test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.2_T6.js b/test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.2_T6.js
deleted file mode 100644
index 35ce7d5c4..000000000
--- a/test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.2_T6.js
+++ /dev/null
@@ -1,160 +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_T6;
- * @section: 7.8.4;
- * @assertion: CharacterEscapeSequnce :: NonEscapeSequence;
- * @description: NonEscapeSequence :: RUSSIAN CAPITAL ALPHABET;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S7.8.4_A4.2_T6",
-
-path: "TestCases/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.2_T6.js",
-
-assertion: "CharacterEscapeSequnce :: NonEscapeSequence",
-
-description: "NonEscapeSequence :: RUSSIAN CAPITAL ALPHABET",
-
-test: function testcase() {
- //CHECK#А-Я
-
-if ("А" !== "\А") {
- $ERROR('#А');
-}
-
-if ("Б" !== "\Б") {
- $ERROR('#Б');
-}
-
-if ("В" !== "\В") {
- $ERROR('#В');
-}
-
-if ("Г" !== "\Г") {
- $ERROR('#Г');
-}
-
-if ("Д" !== "\Д") {
- $ERROR('#Д');
-}
-
-if ("Е" !== "\Е") {
- $ERROR('#Е');
-}
-
-if ("Ж" !== "\Ж") {
- $ERROR('#Ж');
-}
-
-if ("З" !== "\З") {
- $ERROR('#З');
-}
-
-if ("И" !== "\И") {
- $ERROR('#И');
-}
-
-if ("Й" !== "\Й") {
- $ERROR('#Й');
-}
-
-if ("К" !== "\К") {
- $ERROR('#К');
-}
-
-if ("Л" !== "\Л") {
- $ERROR('#Л');
-}
-
-if ("М" !== "\М") {
- $ERROR('#М');
-}
-
-if ("Н" !== "\Н") {
- $ERROR('#Н');
-}
-
-if ("О" !== "\О") {
- $ERROR('#О');
-}
-
-if ("П" !== "\П") {
- $ERROR('#П');
-}
-
-if ("Р" !== "\Р") {
- $ERROR('#Р');
-}
-
-if ("С" !== "\С") {
- $ERROR('#С');
-}
-
-if ("Т" !== "\Т") {
- $ERROR('#Т');
-}
-
-if ("У" !== "\У") {
- $ERROR('#У');
-}
-
-if ("Ф" !== "\Ф") {
- $ERROR('#Ф');
-}
-
-if ("Х" !== "\Х") {
- $ERROR('#Х');
-}
-
-if ("Ц" !== "\Ц") {
- $ERROR('#Ц');
-}
-
-if ("Ч" !== "\Ч") {
- $ERROR('#Ч');
-}
-
-if ("Ш" !== "\Ш") {
- $ERROR('#Ш');
-}
-
-if ("Щ" !== "\Щ") {
- $ERROR('#Щ');
-}
-
-if ("Ъ" !== "\Ъ") {
- $ERROR('#Ъ');
-}
-
-if ("Ы" !== "\Ы") {
- $ERROR('#Ы');
-}
-
-if ("Ь" !== "\Ь") {
- $ERROR('#Ь');
-}
-
-if ("Э" !== "\Э") {
- $ERROR('#Э');
-}
-
-if ("Ю" !== "\Ю") {
- $ERROR('#Ю');
-}
-
-if ("Я" !== "\Я") {
- $ERROR('#Я');
-}
-
-if ("Ё" !== "\Ё") {
- $ERROR('#Ё');
-}
-
- }
-});
-