aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.13_Assignment_Operators/11.13.2_Compound_Assignment/S11.13.2_A1_T3.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/11_Expressions/11.13_Assignment_Operators/11.13.2_Compound_Assignment/S11.13.2_A1_T3.js')
-rw-r--r--test/suite/sputnik_converted/11_Expressions/11.13_Assignment_Operators/11.13.2_Compound_Assignment/S11.13.2_A1_T3.js87
1 files changed, 0 insertions, 87 deletions
diff --git a/test/suite/sputnik_converted/11_Expressions/11.13_Assignment_Operators/11.13.2_Compound_Assignment/S11.13.2_A1_T3.js b/test/suite/sputnik_converted/11_Expressions/11.13_Assignment_Operators/11.13.2_Compound_Assignment/S11.13.2_A1_T3.js
deleted file mode 100644
index 3b02648cf..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.13_Assignment_Operators/11.13.2_Compound_Assignment/S11.13.2_A1_T3.js
+++ /dev/null
@@ -1,87 +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.13.2_A1_T3;
-* @section: 11.13.2;
-* @assertion: White Space and Line Terminator between LeftHandSideExpression and "@=" or between "@=" and AssignmentExpression are allowed;
-* @description: Checking by using eval, check operator is x %= y;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.13.2_A1_T3",
-
-path: "TestCases/11_Expressions/11.13_Assignment_Operators/11.13.2_Compound_Assignment/S11.13.2_A1_T3.js",
-
-assertion: "White Space and Line Terminator between LeftHandSideExpression and \"@=\" or between \"@=\" and AssignmentExpression are allowed",
-
-description: "Checking by using eval, check operator is x %= y",
-
-test: function testcase() {
- //CHECK#1
-x = -1;
-if ((eval("x\u0009%=\u0009-1")) !== 0) {
- $ERROR('#1: x = -1; (x\\u0009%=\\u0009-1) === 0');
-}
-
-//CHECK#2
-x = -1;
-if ((eval("x\u000B%=\u000B-1")) !== 0) {
- $ERROR('#2: x = -1; (x\\u000B%=\\u000B-1) === 0');
-}
-
-//CHECK#3
-x = -1;
-if ((eval("x\u000C%=\u000C-1")) !== 0) {
- $ERROR('#3: x = -1; (x\\u000C%=\\u000C-1) === 0');
-}
-
-//CHECK#4
-x = -1;
-if ((eval("x\u0020%=\u0020-1")) !== 0) {
- $ERROR('#4: x = -1; (x\\u0020%=\\u0020-1) === 0');
-}
-
-//CHECK#5
-x = -1;
-if ((eval("x\u00A0%=\u00A0-1")) !== 0) {
- $ERROR('#5: x = -1; (x\\u00A0%=\\u00A0-1) === 0');
-}
-
-//CHECK#6
-x = -1;
-if ((eval("x\u000A%=\u000A-1")) !== 0) {
- $ERROR('#6: x = -1; (x\\u000A%=\\u000A-1) === 0');
-}
-
-//CHECK#7
-x = -1;
-if ((eval("x\u000D%=\u000D-1")) !== 0) {
- $ERROR('#7: x = -1; (x\\u000D%=\\u000D-1) === 0');
-}
-
-//CHECK#8
-x = -1;
-if ((eval("x\u2028%=\u2028-1")) !== 0) {
- $ERROR('#8: x = -1; (x\\u2028%=\\u2028-1) === 0');
-}
-
-//CHECK#9
-x = -1;
-if ((eval("x\u2029%=\u2029-1")) !== 0) {
- $ERROR('#9: x = -1; (x\\u2029%=\\u2029-1) === 0');
-}
-
-
-//CHECK#10
-x = -1;
-if ((eval("x\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u2029%=\u0009\u000B\u000C\u0020\u00A0\u000A\u000D\u2028\u2029-1")) !== 0) {
- $ERROR('#10: x = -1; (x\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029%=\\u0009\\u000B\\u000C\\u0020\\u00A0\\u000A\\u000D\\u2028\\u2029-1) === 0');
-}
-
- }
-});
-