aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/sputnik_converted/11_Expressions/11.7_Bitwise_Shift_Operators/11.7.1_The_Left_shift_Operator/S11.7.1_A5.1_T1.js
blob: 614f7f213fc0ec12b148e0336a83f1d3d27ae9a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @name: S11.7.1_A5.1_T1;
 * @section: 11.7.1, 9.5;
 * @assertion: Operator x << y uses ToInt32(ShiftExpression);
 * @description: Checking boundary points;
 */


// Converted for Test262 from original Sputnik source

ES5Harness.registerTest( {
id: "S11.7.1_A5.1_T1",

path: "TestCases/11_Expressions/11.7_Bitwise_Shift_Operators/11.7.1_The_Left_shift_Operator/S11.7.1_A5.1_T1.js",

assertion: "Operator x << y uses ToInt32(ShiftExpression)",

description: "Checking boundary points",

test: function testcase() {
   //CHECK#1
if (2147483648.1 << 0 !== -2147483648) { 
  $ERROR('#1: 2147483648.1 << 0 === -2147483648. Actual: ' + (2147483648.1 << 0)); 
} 

//CHECK#2
if (4294967296.1 << 0 !== 0) { 
  $ERROR('#2: 4294967296.1 << 0 === 0. Actual: ' + (4294967296.1 << 0)); 
} 

//CHECK#3
if (6442450944.1 << 0 !== -2147483648) { 
  $ERROR('#3: 6442450944.1 << 0 === -2147483648. Actual: ' + (6442450944.1 << 0)); 
} 

//CHECK#4
if (4294967295.1 << 0 !== -1) { 
  $ERROR('#4: 4294967295.1 << 0 === -1. Actual: ' + (4294967295.1 << 0)); 
} 

//CHECK#5
if (6442450943.1 << 0 !== 2147483647) { 
  $ERROR('#5: 6442450943.1 << 0 === 2147483647. Actual: ' + (6442450943.1 << 0)); 
} 

//CHECK#6
if (-2147483649.1 << 0 !== 2147483647) { 
  $ERROR('#6: -2147483649.1 << 0 === 2147483647. Actual: ' + (-2147483649.1 << 0)); 
} 

//CHECK#7
if (-4294967297.1 << 0 !== -1) { 
  $ERROR('#7: -4294967297.1 << 0 === -1. Actual: ' + (-4294967297.1 << 0)); 
} 

//CHECK#8
if (-6442450945.1 << 0 !== 2147483647) { 
  $ERROR('#8: -6442450945.1 << 0 === 2147483647. Actual: ' + (-6442450945.1 << 0)); 
} 

//CHECK#9
if (-4294967296.1 << 0 !== 0) { 
  $ERROR('#9: -4294967296.1 << 0 === 0 . Actual: ' + (-4294967296.1 << 0)); 
} 

//CHECK#10
if (-6442450944.1 << 0 !== -2147483648) { 
  $ERROR('#10: -6442450944.1 << 0 === -2147483648. Actual: ' + (-6442450944.1 << 0)); 
} 

 }
});