aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/09_Type_Conversion/9.5_ToInt32/S9.5_A2.2_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/suite/sputnik_converted/09_Type_Conversion/9.5_ToInt32/S9.5_A2.2_T2.js')
-rw-r--r--test/suite/sputnik_converted/09_Type_Conversion/9.5_ToInt32/S9.5_A2.2_T2.js86
1 files changed, 0 insertions, 86 deletions
diff --git a/test/suite/sputnik_converted/09_Type_Conversion/9.5_ToInt32/S9.5_A2.2_T2.js b/test/suite/sputnik_converted/09_Type_Conversion/9.5_ToInt32/S9.5_A2.2_T2.js
deleted file mode 100644
index 2a5038a2e..000000000
--- a/test/suite/sputnik_converted/09_Type_Conversion/9.5_ToInt32/S9.5_A2.2_T2.js
+++ /dev/null
@@ -1,86 +0,0 @@
-// Copyright 2009 the Sputnik authors. All rights reserved.
-// This code is governed by the BSD license found in the LICENSE file.
-
-/**
- * @name: S9.5_A2.2_T2;
- * @section: 9.5, 11.4.8;
- * @assertion: Compute result modulo 2^32;
- * @description: Use operator ~;
-*/
-
-
-// Converted for Test262 from original Sputnik source
-
-ES5Harness.registerTest( {
-id: "S9.5_A2.2_T2",
-
-path: "TestCases/09_Type_Conversion/9.5_ToInt32/S9.5_A2.2_T2.js",
-
-assertion: "Compute result modulo 2^32",
-
-description: "Use operator ~",
-
-test: function testcase() {
- // CHECK#1
-if (~-2147483647 !== 2147483646) {
- $ERROR('#1: ~-2147483647 === 2147483646)');
-}
-
-// CHECK#2
-if (~-2147483648 !== ~-2147483648) {
- $ERROR('#2: ~-2147483648 ==== ~-2147483648)');
-}
-
-// CHECK#3
-if (~-2147483649 !== ~2147483647) {
- $ERROR('#3: ~-2147483649 ==== ~2147483647)');
-}
-
-// CHECK#4
-if ((~4294967295 << 0) !== ~-1) {
- $ERROR('#4: (~4294967295 << 0) === ~-1)');
-}
-
-// CHECK#5
-if ((~4294967296 << 0) !== ~0) {
- $ERROR('#5: (~4294967296 << 0) === ~0)');
-}
-
-// CHECK#6
-if ((~4294967297 << 0) !== ~1) {
- $ERROR('#6: (~4294967297 << 0) === ~1)');
-}
-
-// CHECK#7
-if ((~-4294967295 << 0) !== ~1) {
- $ERROR('#7: (~-4294967295 << 0) === ~1)');
-}
-
-// CHECK#8
-if ((~-4294967296 << 0) !== ~0) {
- $ERROR('#8: (~-4294967296 << 0) === ~0)');
-}
-
-// CHECK#9
-if ((~-4294967297 << 0) !== ~-1) {
- $ERROR('#9: (~-4294967297 << 0) === ~-1)');
-}
-
-// CHECK#10
-if ((~8589934591 << 0) !== ~-1) {
- $ERROR('#10: (~8589934591 << 0) === ~-1)');
-}
-
-// CHECK#11
-if ((~8589934592 << 0) !== ~0) {
- $ERROR('#11: (~8589934592 << 0) === ~0)');
-}
-
-// CHECK#12
-if ((~8589934593 << 0) !== ~1) {
- $ERROR('#12: (~8589934593 << 0) === ~1)');
-}
-
- }
-});
-