aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.1_The_Less_than_Operator/S11.8.1_A4.12_T2.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_A4.12_T2.js')
-rw-r--r--test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.1_The_Less_than_Operator/S11.8.1_A4.12_T2.js61
1 files changed, 0 insertions, 61 deletions
diff --git a/test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.1_The_Less_than_Operator/S11.8.1_A4.12_T2.js b/test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.1_The_Less_than_Operator/S11.8.1_A4.12_T2.js
deleted file mode 100644
index 10042b08c..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.8_Relational_Operators/11.8.1_The_Less_than_Operator/S11.8.1_A4.12_T2.js
+++ /dev/null
@@ -1,61 +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_A4.12_T2;
-* @section: 11.8.1, 11.8.5;
-* @assertion: If neither x, nor y is a prefix of each other, returned result of strings comparison applies a simple lexicographic ordering to the sequences of code point value values;
-* @description: x and y are string primitives;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.8.1_A4.12_T2",
-
-path: "TestCases/11_Expressions/11.8_Relational_Operators/11.8.1_The_Less_than_Operator/S11.8.1_A4.12_T2.js",
-
-assertion: "If neither x, nor y is a prefix of each other, returned result of strings comparison applies a simple lexicographic ordering to the sequences of code point value values",
-
-description: "x and y are string primitives",
-
-test: function testcase() {
- //CHECK#1
-if (("0" < "x") !== true) {
- $ERROR('#1: ("0" < "x") !== true');
-}
-
-//CHECK#2
-if (("-" < "0") !== true) {
- $ERROR('#2: ("-" < "0") !== true');
-}
-
-//CHECK#3
-if (("." < "0") !== true) {
- $ERROR('#3: ("." < "0") !== true');
-}
-
-//CHECK#4
-if (("+" < "-") !== true) {
- $ERROR('#4: ("+" < "-") !== true');
-}
-
-//CHECK#5
-if (("-0" < "-1") !== true) {
- $ERROR('#5: ("-0" < "-1") !== true');
-}
-
-//CHECK#6
-if (("+1" < "-1") !== true) {
- $ERROR('#6: ("+1" < "-1") !== true');
-}
-
-//CHECK#7
-if (("1" < "1e-10") !== true) {
-$ERROR('#7: ("1" < "1e-10") !== true');
-}
-
- }
-});
-