aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.1_The_Less_than_Operator/S11.8.1_A1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.1_The_Less_than_Operator/S11.8.1_A1.js')
-rw-r--r--test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.1_The_Less_than_Operator/S11.8.1_A1.js76
1 files changed, 0 insertions, 76 deletions
diff --git a/test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.1_The_Less_than_Operator/S11.8.1_A1.js b/test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.1_The_Less_than_Operator/S11.8.1_A1.js
deleted file mode 100644
index 9d9d2dff7..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.1_The_Less_than_Operator/S11.8.1_A1.js
+++ /dev/null
@@ -1,76 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
-* @name: S11.8.1_A1;
-* @section: 11.8.1, 7.2, 7.3;
-* @assertion: White Space and Line Terminator between RelationalExpression and "<" or between "<" and ShiftExpression are allowed;
-* @description: Checking by using eval;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.8.1_A1",
-
-path: "TestCases/11_Expressions/11.8_Relational_Operators/11.8.1_The_Less_than_Operator/S11.8.1_A1.js",
-
-assertion: "White Space and Line Terminator between RelationalExpression and \"<\" or between \"<\" and ShiftExpression are allowed",
-
-description: "Checking by using eval",
-
-test: function testcase() {
- //CHECK#1
-if (eval("0\u0009<\u00091") !== true) {
- $ERROR('#1: (0\\u0009<\\u00091) === true');
-}
-
-//CHECK#2
-if (eval("0\u000B<\u000B1") !== true) {
- $ERROR('#2: (0\\u000B<\\u000B1) === true');
-}
-
-//CHECK#3
-if (eval("0\u000C<\u000C1") !== true) {
- $ERROR('#3: (0\\u000C<\\u000C1) === true');
-}
-
-//CHECK#4
-if (eval("0\u0020<\u00201") !== true) {
- $ERROR('#4: (0\\u0020<\\u00201) === true');
-}
-
-//CHECK#5
-if (eval("0\u00A0<\u00A01") !== true) {
- $ERROR('#5: (0\\u00A0<\\u00A01) === true');
-}
-
-//CHECK#6
-if (eval("0\u000A<\u000A1") !== true) {
- $ERROR('#6: (0\\u000A<\\u000A1) === true');
-}
-
-//CHECK#7
-if (eval("0\u000D<\u000D1") !== true) {
- $ERROR('#7: (0\\u000D<\\u000D1) === true');
-}
-
-//CHECK#8
-if (eval("0\u2028<\u20281") !== true) {
- $ERROR('#8: (0\\u2028<\\u20281) === true');
-}
-
-//CHECK#9
-if (eval("0\u2029<\u20291") !== true) {
- $ERROR('#9: (0\\u2029<\\u20291) === true');
-}
-
-//CHECK#10
-if (eval("0\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u2029<\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u20291") !== true) {
- $ERROR('#10: (0\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029<\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u20291) === true');
-}
-
- }
-});
-