aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T7.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.3_T7.js')
-rw-r--r--test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T7.js52
1 files changed, 0 insertions, 52 deletions
diff --git a/test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T7.js b/test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T7.js
deleted file mode 100644
index 4c575e280..000000000
--- a/test/suite/sputnik_converted/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T7.js
+++ /dev/null
@@ -1,52 +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.3_T7;
- * @section: 7.8.4;
- * @assertion: NonEscapeSequence is not EscapeCharacter;
- * @description: EscapeCharacter :: SingleEscapeCharacter :: one of b f n r t v;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S7.8.4_A4.3_T7",
-
-path: "TestCases/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A4.3_T7.js",
-
-assertion: "NonEscapeSequence is not EscapeCharacter",
-
-description: "EscapeCharacter :: SingleEscapeCharacter :: one of b f n r t v",
-
-test: function testcase() {
- //CHECK#bfnrtv
-if ("b" === "\b") {
- $ERROR('#b')
-}
-
-if ("f" === "\f") {
- $ERROR('#f')
-}
-
-if ("n" === "\n") {
- $ERROR('#n')
-}
-
-if ("r" === "\r") {
- $ERROR('#r')
-}
-
-if ("t" === "\t") {
- $ERROR('#t')
-}
-
-if ("v" === "\v") {
- $ERROR('#v')
-}
-
-
- }
-});
-