aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.8_Bitwise_NOT_Operator/S11.4.8_A2.1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.8_Bitwise_NOT_Operator/S11.4.8_A2.1_T1.js')
-rw-r--r--test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.8_Bitwise_NOT_Operator/S11.4.8_A2.1_T1.js55
1 files changed, 0 insertions, 55 deletions
diff --git a/test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.8_Bitwise_NOT_Operator/S11.4.8_A2.1_T1.js b/test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.8_Bitwise_NOT_Operator/S11.4.8_A2.1_T1.js
deleted file mode 100644
index 4f3125e7b..000000000
--- a/test/suite/sputnik_converted/11_Expressions/11.4_Unary_Operators/11.4.8_Bitwise_NOT_Operator/S11.4.8_A2.1_T1.js
+++ /dev/null
@@ -1,55 +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.4.8_A2.1_T1;
-* @section: 11.4.8;
-* @assertion: Operator ~x uses GetValue;
-* @description: Either Type(x) is not Reference or GetBase(x) is not null;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S11.4.8_A2.1_T1",
-
-path: "TestCases/11_Expressions/11.4_Unary_Operators/11.4.8_Bitwise_NOT_Operator/S11.4.8_A2.1_T1.js",
-
-assertion: "Operator ~x uses GetValue",
-
-description: "Either Type(x) is not Reference or GetBase(x) is not null",
-
-test: function testcase() {
- //CHECK#1
-if (~0 !== -1) {
- $ERROR('#1: ~0 === -1. Actual: ' + (~0));
-}
-
-//CHECK#2
-if (~(~0) !== 0) {
- $ERROR('#2: ~(~0) === 0. Actual: ' + (~(~0)));
-}
-
-//CHECK#3
-var x = 0;
-if (~x !== -1) {
- $ERROR('#3: var x = 0; ~x === -1. Actual: ' + (~x));
-}
-
-//CHECK#4
-var x = 0;
-if (~(~x) !== 0) {
- $ERROR('#4: var x = 0; ~(~x) === 0. Actual: ' + (~(~x)));
-}
-
-//CHECK#5
-var object = new Object();
-object.prop = 0;
-if (~object.prop !== -1) {
- $ERROR('#5: var object = new Object(); object.prop = 0; ~object.prop === -1. Actual: ' + (~object.prop));
-}
-
- }
-});
-