summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/expressions/unsigned-right-shift/S11.7.3_A5.1_T1.js
blob: 0b57b65461ad405349ae652b218aad756058b2ca (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
// Copyright 2009 the Sputnik authors.  All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
info: Operator x >>> y uses ToUint32(ShiftExpression)
es5id: 11.7.3_A5.1_T1
description: Checking boundary points
---*/

//CHECK#1
if (2147483648.1 >>> 0 !== 2147483648) { 
  throw new Test262Error('#1: 2147483648.1 >>> 0 === 2147483648. Actual: ' + (2147483648.1 >>> 0)); 
} 

//CHECK#2
if (4294967296.1 >>> 0 !== 0) { 
  throw new Test262Error('#2: 4294967296.1 >>> 0 === 0. Actual: ' + (4294967296.1 >>> 0)); 
} 

//CHECK#3
if (6442450944.1 >>> 0 !== 2147483648) { 
  throw new Test262Error('#3: 6442450944.1 >>> 0 === 2147483648. Actual: ' + (6442450944.1 >>> 0)); 
} 

//CHECK#4
if (4294967295.1 >>> 0 !== 4294967295) { 
  throw new Test262Error('#4: 4294967295.1 >>> 0 === 4294967295. Actual: ' + (4294967295.1 >>> 0)); 
} 

//CHECK#5
if (6442450943.1 >>> 0 !== 2147483647) { 
  throw new Test262Error('#5: 6442450943.1 >>> 0 === 2147483647. Actual: ' + (6442450943.1 >>> 0)); 
} 

//CHECK#6
if (-2147483649.1 >>> 0 !== 2147483647) { 
  throw new Test262Error('#6: -2147483649.1 >>> 0 === 2147483647. Actual: ' + (-2147483649.1 >>> 0)); 
} 

//CHECK#7
if (-4294967297.1 >>> 0 !== 4294967295) { 
  throw new Test262Error('#7: -4294967297.1 >>> 0 === 4294967295. Actual: ' + (-4294967297.1 >>> 0)); 
} 

//CHECK#8
if (-6442450945.1 >>> 0 !== 2147483647) { 
  throw new Test262Error('#8: -6442450945.1 >>> 0 === 2147483647. Actual: ' + (-6442450945.1 >>> 0)); 
} 

//CHECK#9
if (-4294967296.1 >>> 0 !== 0) { 
  throw new Test262Error('#9: -4294967296.1 >>> 0 === 0 . Actual: ' + (-4294967296.1 >>> 0)); 
} 

//CHECK#10
if (-6442450944.1 >>> 0 !== 2147483648) { 
  throw new Test262Error('#10: -6442450944.1 >>> 0 === 2147483648. Actual: ' + (-6442450944.1 >>> 0)); 
}

reportCompare(0, 0);