summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/bitwise-not/S9.5_A2.1_T2.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/expressions/bitwise-not/S9.5_A2.1_T2.js')
-rw-r--r--js/src/tests/test262/language/expressions/bitwise-not/S9.5_A2.1_T2.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/expressions/bitwise-not/S9.5_A2.1_T2.js b/js/src/tests/test262/language/expressions/bitwise-not/S9.5_A2.1_T2.js
new file mode 100644
index 0000000000..7f6e38f7d0
--- /dev/null
+++ b/js/src/tests/test262/language/expressions/bitwise-not/S9.5_A2.1_T2.js
@@ -0,0 +1,32 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+info: ToInt32 returns values between -2^31 and 2^31-1
+es5id: 9.5_A2.1_T2
+description: >
+ Converting some numbers, which are in\outside of Int32 scopes,
+ with ~ operator
+---*/
+
+// CHECK#1
+if (~-2147483649 !== ~2147483647) {
+ throw new Test262Error('#1: ~-2147483649 === ~2147483647');
+}
+
+// CHECK#2
+if (~-4294967296 !== ~0) {
+ throw new Test262Error('#2: ~-4294967296 === ~0');
+}
+
+// CHECK#3
+if (~2147483648 !== ~-2147483648) {
+ throw new Test262Error('#3: ~2147483648 === ~-2147483648');
+}
+
+// CHECK#4
+if (~4294967296 !== ~0) {
+ throw new Test262Error('#4: ~4294967296 === ~0');
+}
+
+reportCompare(0, 0);