-
Notifications
You must be signed in to change notification settings - Fork 1
/
output.txt
3158 lines (3157 loc) · 190 KB
/
output.txt
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Team: maci4699
Member 1: Matthew Cirbo maci4699
Member 2: Nick Isaacs nisaacs
Test isZero score: 1.00/1.00
Test tmax() failed.
Gives 15[0xf]. Should be 2147483647[0x7fffffff]
Test tmax score: 0.00/1.00
Test fitsBits score: 2.00/2.00
Test negate score: 2.00/2.00
Test addOK(-2147483648[0x80000000],-3[0xfffffffd]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483648[0x80000000],-1124079037[0xbcffea43]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483648[0x80000000],-2147483647[0x80000001]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483648[0x80000000],-1[0xffffffff]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483648[0x80000000],-2147483645[0x80000003]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483648[0x80000000],-1002162975[0xc44434e1]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483647[0x7fffffff],2147483647[0x7fffffff]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483647[0x7fffffff],2147483645[0x7ffffffd]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483647[0x7fffffff],0[0x0]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(2147483647[0x7fffffff],2147483643[0x7ffffffb]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483647[0x7fffffff],1[0x1]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-3[0xfffffffd],-2147483648[0x80000000]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-3[0xfffffffd],-3[0xfffffffd]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-3[0xfffffffd],-1124079037[0xbcffea43]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-3[0xfffffffd],-2147483646[0x80000002]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-3[0xfffffffd],-1[0xffffffff]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-3[0xfffffffd],-2147483645[0x80000003]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-3[0xfffffffd],-1002162975[0xc44434e1]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-648999901[0xd9510c23],-2147483648[0x80000000]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-648999901[0xd9510c23],-3[0xfffffffd]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-648999901[0xd9510c23],-1124079037[0xbcffea43]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-648999901[0xd9510c23],-2147483646[0x80000002]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-648999901[0xd9510c23],-1[0xffffffff]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-648999901[0xd9510c23],-2147483644[0x80000004]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-648999901[0xd9510c23],-1002162975[0xc44434e1]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-2147483647[0x80000001],-2147483648[0x80000000]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483647[0x80000001],-2[0xfffffffe]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483647[0x80000001],-2147483646[0x80000002]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483647[0x80000001],-1[0xffffffff]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-2147483647[0x80000001],-2147483644[0x80000004]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483646[0x7ffffffe],2147483646[0x7ffffffe]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483646[0x7ffffffe],2021358202[0x787b7a7a]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483646[0x7ffffffe],1727470520[0x66f71bb8]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483646[0x7ffffffe],2147483644[0x7ffffffc]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483646[0x7ffffffe],1507189006[0x59d5e10e]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483646[0x7ffffffe],1[0x1]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-2[0xfffffffe],-2147483647[0x80000001]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2[0xfffffffe],-2[0xfffffffe]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-2[0xfffffffe],-2147483646[0x80000002]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-2[0xfffffffe],-2147483644[0x80000004]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-1871869923[0x906d881d],-2147483648[0x80000000]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-1871869923[0x906d881d],-3[0xfffffffd]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-1871869923[0x906d881d],-2147483646[0x80000002]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-1871869923[0x906d881d],-1[0xffffffff]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-1871869923[0x906d881d],-2147483644[0x80000004]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483646[0x80000002],-3[0xfffffffd]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483646[0x80000002],-1124079037[0xbcffea43]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483646[0x80000002],-2147483647[0x80000001]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483646[0x80000002],-2[0xfffffffe]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-2147483646[0x80000002],-2147483645[0x80000003]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483646[0x80000002],-1002162975[0xc44434e1]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483645[0x7ffffffd],2147483647[0x7fffffff]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483645[0x7ffffffd],2147483645[0x7ffffffd]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483645[0x7ffffffd],0[0x0]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(2147483645[0x7ffffffd],2147483643[0x7ffffffb]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-1[0xffffffff],-2147483648[0x80000000]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-1[0xffffffff],-3[0xfffffffd]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-1[0xffffffff],-1124079037[0xbcffea43]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-1[0xffffffff],-2147483647[0x80000001]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-1[0xffffffff],-1[0xffffffff]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-1[0xffffffff],-2147483645[0x80000003]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-1[0xffffffff],-1002162975[0xc44434e1]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-2061485307[0x85203b05],-2147483648[0x80000000]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2061485307[0x85203b05],-3[0xfffffffd]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-2061485307[0x85203b05],-2147483646[0x80000002]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2061485307[0x85203b05],-1[0xffffffff]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-2061485307[0x85203b05],-2147483644[0x80000004]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483645[0x80000003],-2147483648[0x80000000]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483645[0x80000003],-3[0xfffffffd]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-2147483645[0x80000003],-2147483646[0x80000002]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483645[0x80000003],-1[0xffffffff]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-2147483645[0x80000003],-2147483644[0x80000004]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483644[0x7ffffffc],2147483646[0x7ffffffe]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483644[0x7ffffffc],2021358202[0x787b7a7a]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483644[0x7ffffffc],1727470520[0x66f71bb8]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483644[0x7ffffffc],2147483644[0x7ffffffc]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483644[0x7ffffffc],1507189006[0x59d5e10e]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483644[0x7ffffffc],1[0x1]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(0[0x0],2147483647[0x7fffffff]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(0[0x0],2147483645[0x7ffffffd]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(0[0x0],2147483643[0x7ffffffb]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(0[0x0],1[0x1]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-181669655[0xf52bf0e9],-2147483648[0x80000000]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-181669655[0xf52bf0e9],-3[0xfffffffd]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-181669655[0xf52bf0e9],-1124079037[0xbcffea43]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-181669655[0xf52bf0e9],-2147483646[0x80000002]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-181669655[0xf52bf0e9],-1[0xffffffff]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-181669655[0xf52bf0e9],-2147483644[0x80000004]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-181669655[0xf52bf0e9],-1002162975[0xc44434e1]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-2147483644[0x80000004],-1124079037[0xbcffea43]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483644[0x80000004],-2147483647[0x80000001]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483644[0x80000004],-2[0xfffffffe]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-2147483644[0x80000004],-2147483645[0x80000003]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-2147483644[0x80000004],-1002162975[0xc44434e1]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483643[0x7ffffffb],2147483647[0x7fffffff]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483643[0x7ffffffb],2147483645[0x7ffffffd]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(2147483643[0x7ffffffb],0[0x0]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(2147483643[0x7ffffffb],2147483643[0x7ffffffb]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(1[0x1],2147483647[0x7fffffff]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(1[0x1],2147483646[0x7ffffffe]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(1[0x1],2021358202[0x787b7a7a]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(1[0x1],1727470520[0x66f71bb8]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(1[0x1],2147483644[0x7ffffffc]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(1[0x1],0[0x0]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(1[0x1],1507189006[0x59d5e10e]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-1876489085[0x90270c83],-2147483648[0x80000000]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-1876489085[0x90270c83],-3[0xfffffffd]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-1876489085[0x90270c83],-2147483646[0x80000002]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK(-1876489085[0x90270c83],-1[0xffffffff]) failed.
Gives 0[0x0]. Should be 1[0x1]
Test addOK(-1876489085[0x90270c83],-2147483644[0x80000004]) failed.
Gives 1[0x1]. Should be 0[0x0]
Test addOK score: 0.00/3.00
Test reverseBytes(-2147483648[0x80000000]) failed.
Gives 2147483647[0x7fffffff]. Should be 128[0x80]
Test reverseBytes(2147483647[0x7fffffff]) failed.
Gives -2147483648[0x80000000]. Should be -129[0xffffff7f]
Test reverseBytes(-3[0xfffffffd]) failed.
Gives 2[0x2]. Should be -33554433[0xfdffffff]
Test reverseBytes(135748600[0x8175bf8]) failed.
Gives -135748601[0xf7e8a407]. Should be -128248056[0xf85b1708]
Test reverseBytes(-2147483647[0x80000001]) failed.
Gives 2147483646[0x7ffffffe]. Should be 16777344[0x1000080]
Test reverseBytes(2147483646[0x7ffffffe]) failed.
Gives -2147483647[0x80000001]. Should be -16777345[0xfeffff7f]
Test reverseBytes(-2[0xfffffffe]) failed.
Gives 1[0x1]. Should be -16777217[0xfeffffff]
Test reverseBytes(-1978775857[0x8a0e46cf]) failed.
Gives 1978775856[0x75f1b930]. Should be -817492342[0xcf460e8a]
Test reverseBytes(-2147483646[0x80000002]) failed.
Gives 2147483645[0x7ffffffd]. Should be 33554560[0x2000080]
Test reverseBytes(2147483645[0x7ffffffd]) failed.
Gives -2147483646[0x80000002]. Should be -33554561[0xfdffff7f]
Test reverseBytes(-1[0xffffffff]) failed.
Gives 0[0x0]. Should be -1[0xffffffff]
Test reverseBytes(-267844483[0xf009047d]) failed.
Gives 267844482[0xff6fb82]. Should be 2097416688[0x7d0409f0]
Test reverseBytes(-2147483645[0x80000003]) failed.
Gives 2147483644[0x7ffffffc]. Should be 50331776[0x3000080]
Test reverseBytes(2147483644[0x7ffffffc]) failed.
Gives -2147483645[0x80000003]. Should be -50331777[0xfcffff7f]
Test reverseBytes(0[0x0]) failed.
Gives -1[0xffffffff]. Should be 0[0x0]
Test reverseBytes(1854717442[0x6e8cbe02]) failed.
Gives -1854717443[0x917341fd]. Should be 46042222[0x2be8c6e]
Test reverseBytes(-2147483644[0x80000004]) failed.
Gives 2147483643[0x7ffffffb]. Should be 67108992[0x4000080]
Test reverseBytes(2147483643[0x7ffffffb]) failed.
Gives -2147483644[0x80000004]. Should be -67108993[0xfbffff7f]
Test reverseBytes(1[0x1]) failed.
Gives -2[0xfffffffe]. Should be 16777216[0x1000000]
Test reverseBytes(1850313980[0x6e498cfc]) failed.
Gives -1850313981[0x91b67303]. Should be -57915026[0xfc8c496e]
Test reverseBytes score: 0.00/3.00
Test logicalShift(-2147483648[0x80000000],1[0x1]) failed.
Gives -1073741824[0xc0000000]. Should be 1073741824[0x40000000]
Test logicalShift(-2147483648[0x80000000],2[0x2]) failed.
Gives -536870912[0xe0000000]. Should be 536870912[0x20000000]
Test logicalShift(-2147483648[0x80000000],3[0x3]) failed.
Gives -268435456[0xf0000000]. Should be 268435456[0x10000000]
Test logicalShift(-2147483648[0x80000000],4[0x4]) failed.
Gives -134217728[0xf8000000]. Should be 134217728[0x8000000]
Test logicalShift(-2147483648[0x80000000],5[0x5]) failed.
Gives -67108864[0xfc000000]. Should be 67108864[0x4000000]
Test logicalShift(-2147483648[0x80000000],6[0x6]) failed.
Gives -33554432[0xfe000000]. Should be 33554432[0x2000000]
Test logicalShift(-2147483648[0x80000000],7[0x7]) failed.
Gives -16777216[0xff000000]. Should be 16777216[0x1000000]
Test logicalShift(-2147483648[0x80000000],8[0x8]) failed.
Gives -8388608[0xff800000]. Should be 8388608[0x800000]
Test logicalShift(-2147483648[0x80000000],9[0x9]) failed.
Gives -4194304[0xffc00000]. Should be 4194304[0x400000]
Test logicalShift(-2147483648[0x80000000],10[0xa]) failed.
Gives -2097152[0xffe00000]. Should be 2097152[0x200000]
Test logicalShift(-2147483648[0x80000000],11[0xb]) failed.
Gives -1048576[0xfff00000]. Should be 1048576[0x100000]
Test logicalShift(-2147483648[0x80000000],12[0xc]) failed.
Gives -524288[0xfff80000]. Should be 524288[0x80000]
Test logicalShift(-2147483648[0x80000000],13[0xd]) failed.
Gives -262144[0xfffc0000]. Should be 262144[0x40000]
Test logicalShift(-2147483648[0x80000000],14[0xe]) failed.
Gives -131072[0xfffe0000]. Should be 131072[0x20000]
Test logicalShift(-2147483648[0x80000000],15[0xf]) failed.
Gives -65536[0xffff0000]. Should be 65536[0x10000]
Test logicalShift(-2147483648[0x80000000],16[0x10]) failed.
Gives -32768[0xffff8000]. Should be 32768[0x8000]
Test logicalShift(-2147483648[0x80000000],17[0x11]) failed.
Gives -16384[0xffffc000]. Should be 16384[0x4000]
Test logicalShift(-2147483648[0x80000000],18[0x12]) failed.
Gives -8192[0xffffe000]. Should be 8192[0x2000]
Test logicalShift(-2147483648[0x80000000],19[0x13]) failed.
Gives -4096[0xfffff000]. Should be 4096[0x1000]
Test logicalShift(-2147483648[0x80000000],20[0x14]) failed.
Gives -2048[0xfffff800]. Should be 2048[0x800]
Test logicalShift(-2147483648[0x80000000],21[0x15]) failed.
Gives -1024[0xfffffc00]. Should be 1024[0x400]
Test logicalShift(-2147483648[0x80000000],22[0x16]) failed.
Gives -512[0xfffffe00]. Should be 512[0x200]
Test logicalShift(-2147483648[0x80000000],23[0x17]) failed.
Gives -256[0xffffff00]. Should be 256[0x100]
Test logicalShift(-2147483648[0x80000000],24[0x18]) failed.
Gives -128[0xffffff80]. Should be 128[0x80]
Test logicalShift(-2147483648[0x80000000],25[0x19]) failed.
Gives -64[0xffffffc0]. Should be 64[0x40]
Test logicalShift(-2147483648[0x80000000],26[0x1a]) failed.
Gives -32[0xffffffe0]. Should be 32[0x20]
Test logicalShift(-2147483648[0x80000000],27[0x1b]) failed.
Gives -16[0xfffffff0]. Should be 16[0x10]
Test logicalShift(-2147483648[0x80000000],28[0x1c]) failed.
Gives -8[0xfffffff8]. Should be 8[0x8]
Test logicalShift(-2147483648[0x80000000],29[0x1d]) failed.
Gives -4[0xfffffffc]. Should be 4[0x4]
Test logicalShift(-2147483648[0x80000000],30[0x1e]) failed.
Gives -2[0xfffffffe]. Should be 2[0x2]
Test logicalShift(-2147483648[0x80000000],31[0x1f]) failed.
Gives -1[0xffffffff]. Should be 1[0x1]
Test logicalShift(-3[0xfffffffd],1[0x1]) failed.
Gives -2[0xfffffffe]. Should be 2147483646[0x7ffffffe]
Test logicalShift(-3[0xfffffffd],2[0x2]) failed.
Gives -1[0xffffffff]. Should be 1073741823[0x3fffffff]
Test logicalShift(-3[0xfffffffd],3[0x3]) failed.
Gives -1[0xffffffff]. Should be 536870911[0x1fffffff]
Test logicalShift(-3[0xfffffffd],4[0x4]) failed.
Gives -1[0xffffffff]. Should be 268435455[0xfffffff]
Test logicalShift(-3[0xfffffffd],5[0x5]) failed.
Gives -1[0xffffffff]. Should be 134217727[0x7ffffff]
Test logicalShift(-3[0xfffffffd],6[0x6]) failed.
Gives -1[0xffffffff]. Should be 67108863[0x3ffffff]
Test logicalShift(-3[0xfffffffd],7[0x7]) failed.
Gives -1[0xffffffff]. Should be 33554431[0x1ffffff]
Test logicalShift(-3[0xfffffffd],8[0x8]) failed.
Gives -1[0xffffffff]. Should be 16777215[0xffffff]
Test logicalShift(-3[0xfffffffd],9[0x9]) failed.
Gives -1[0xffffffff]. Should be 8388607[0x7fffff]
Test logicalShift(-3[0xfffffffd],10[0xa]) failed.
Gives -1[0xffffffff]. Should be 4194303[0x3fffff]
Test logicalShift(-3[0xfffffffd],11[0xb]) failed.
Gives -1[0xffffffff]. Should be 2097151[0x1fffff]
Test logicalShift(-3[0xfffffffd],12[0xc]) failed.
Gives -1[0xffffffff]. Should be 1048575[0xfffff]
Test logicalShift(-3[0xfffffffd],13[0xd]) failed.
Gives -1[0xffffffff]. Should be 524287[0x7ffff]
Test logicalShift(-3[0xfffffffd],14[0xe]) failed.
Gives -1[0xffffffff]. Should be 262143[0x3ffff]
Test logicalShift(-3[0xfffffffd],15[0xf]) failed.
Gives -1[0xffffffff]. Should be 131071[0x1ffff]
Test logicalShift(-3[0xfffffffd],16[0x10]) failed.
Gives -1[0xffffffff]. Should be 65535[0xffff]
Test logicalShift(-3[0xfffffffd],17[0x11]) failed.
Gives -1[0xffffffff]. Should be 32767[0x7fff]
Test logicalShift(-3[0xfffffffd],18[0x12]) failed.
Gives -1[0xffffffff]. Should be 16383[0x3fff]
Test logicalShift(-3[0xfffffffd],19[0x13]) failed.
Gives -1[0xffffffff]. Should be 8191[0x1fff]
Test logicalShift(-3[0xfffffffd],20[0x14]) failed.
Gives -1[0xffffffff]. Should be 4095[0xfff]
Test logicalShift(-3[0xfffffffd],21[0x15]) failed.
Gives -1[0xffffffff]. Should be 2047[0x7ff]
Test logicalShift(-3[0xfffffffd],22[0x16]) failed.
Gives -1[0xffffffff]. Should be 1023[0x3ff]
Test logicalShift(-3[0xfffffffd],23[0x17]) failed.
Gives -1[0xffffffff]. Should be 511[0x1ff]
Test logicalShift(-3[0xfffffffd],24[0x18]) failed.
Gives -1[0xffffffff]. Should be 255[0xff]
Test logicalShift(-3[0xfffffffd],25[0x19]) failed.
Gives -1[0xffffffff]. Should be 127[0x7f]
Test logicalShift(-3[0xfffffffd],26[0x1a]) failed.
Gives -1[0xffffffff]. Should be 63[0x3f]
Test logicalShift(-3[0xfffffffd],27[0x1b]) failed.
Gives -1[0xffffffff]. Should be 31[0x1f]
Test logicalShift(-3[0xfffffffd],28[0x1c]) failed.
Gives -1[0xffffffff]. Should be 15[0xf]
Test logicalShift(-3[0xfffffffd],29[0x1d]) failed.
Gives -1[0xffffffff]. Should be 7[0x7]
Test logicalShift(-3[0xfffffffd],30[0x1e]) failed.
Gives -1[0xffffffff]. Should be 3[0x3]
Test logicalShift(-3[0xfffffffd],31[0x1f]) failed.
Gives -1[0xffffffff]. Should be 1[0x1]
Test logicalShift(-728696479[0xd490f961],1[0x1]) failed.
Gives -364348240[0xea487cb0]. Should be 1783135408[0x6a487cb0]
Test logicalShift(-728696479[0xd490f961],2[0x2]) failed.
Gives -182174120[0xf5243e58]. Should be 891567704[0x35243e58]
Test logicalShift(-728696479[0xd490f961],3[0x3]) failed.
Gives -91087060[0xfa921f2c]. Should be 445783852[0x1a921f2c]
Test logicalShift(-728696479[0xd490f961],4[0x4]) failed.
Gives -45543530[0xfd490f96]. Should be 222891926[0xd490f96]
Test logicalShift(-728696479[0xd490f961],5[0x5]) failed.
Gives -22771765[0xfea487cb]. Should be 111445963[0x6a487cb]
Test logicalShift(-728696479[0xd490f961],6[0x6]) failed.
Gives -11385883[0xff5243e5]. Should be 55722981[0x35243e5]
Test logicalShift(-728696479[0xd490f961],7[0x7]) failed.
Gives -5692942[0xffa921f2]. Should be 27861490[0x1a921f2]
Test logicalShift(-728696479[0xd490f961],8[0x8]) failed.
Gives -2846471[0xffd490f9]. Should be 13930745[0xd490f9]
Test logicalShift(-728696479[0xd490f961],9[0x9]) failed.
Gives -1423236[0xffea487c]. Should be 6965372[0x6a487c]
Test logicalShift(-728696479[0xd490f961],10[0xa]) failed.
Gives -711618[0xfff5243e]. Should be 3482686[0x35243e]
Test logicalShift(-728696479[0xd490f961],11[0xb]) failed.
Gives -355809[0xfffa921f]. Should be 1741343[0x1a921f]
Test logicalShift(-728696479[0xd490f961],12[0xc]) failed.
Gives -177905[0xfffd490f]. Should be 870671[0xd490f]
Test logicalShift(-728696479[0xd490f961],13[0xd]) failed.
Gives -88953[0xfffea487]. Should be 435335[0x6a487]
Test logicalShift(-728696479[0xd490f961],14[0xe]) failed.
Gives -44477[0xffff5243]. Should be 217667[0x35243]
Test logicalShift(-728696479[0xd490f961],15[0xf]) failed.
Gives -22239[0xffffa921]. Should be 108833[0x1a921]
Test logicalShift(-728696479[0xd490f961],16[0x10]) failed.
Gives -11120[0xffffd490]. Should be 54416[0xd490]
Test logicalShift(-728696479[0xd490f961],17[0x11]) failed.
Gives -5560[0xffffea48]. Should be 27208[0x6a48]
Test logicalShift(-728696479[0xd490f961],18[0x12]) failed.
Gives -2780[0xfffff524]. Should be 13604[0x3524]
Test logicalShift(-728696479[0xd490f961],19[0x13]) failed.
Gives -1390[0xfffffa92]. Should be 6802[0x1a92]
Test logicalShift(-728696479[0xd490f961],20[0x14]) failed.
Gives -695[0xfffffd49]. Should be 3401[0xd49]
Test logicalShift(-728696479[0xd490f961],21[0x15]) failed.
Gives -348[0xfffffea4]. Should be 1700[0x6a4]
Test logicalShift(-728696479[0xd490f961],22[0x16]) failed.
Gives -174[0xffffff52]. Should be 850[0x352]
Test logicalShift(-728696479[0xd490f961],23[0x17]) failed.
Gives -87[0xffffffa9]. Should be 425[0x1a9]
Test logicalShift(-728696479[0xd490f961],24[0x18]) failed.
Gives -44[0xffffffd4]. Should be 212[0xd4]
Test logicalShift(-728696479[0xd490f961],25[0x19]) failed.
Gives -22[0xffffffea]. Should be 106[0x6a]
Test logicalShift(-728696479[0xd490f961],26[0x1a]) failed.
Gives -11[0xfffffff5]. Should be 53[0x35]
Test logicalShift(-728696479[0xd490f961],27[0x1b]) failed.
Gives -6[0xfffffffa]. Should be 26[0x1a]
Test logicalShift(-728696479[0xd490f961],28[0x1c]) failed.
Gives -3[0xfffffffd]. Should be 13[0xd]
Test logicalShift(-728696479[0xd490f961],29[0x1d]) failed.
Gives -2[0xfffffffe]. Should be 6[0x6]
Test logicalShift(-728696479[0xd490f961],30[0x1e]) failed.
Gives -1[0xffffffff]. Should be 3[0x3]
Test logicalShift(-728696479[0xd490f961],31[0x1f]) failed.
Gives -1[0xffffffff]. Should be 1[0x1]
Test logicalShift(-2147483647[0x80000001],1[0x1]) failed.
Gives -1073741824[0xc0000000]. Should be 1073741824[0x40000000]
Test logicalShift(-2147483647[0x80000001],2[0x2]) failed.
Gives -536870912[0xe0000000]. Should be 536870912[0x20000000]
Test logicalShift(-2147483647[0x80000001],3[0x3]) failed.
Gives -268435456[0xf0000000]. Should be 268435456[0x10000000]
Test logicalShift(-2147483647[0x80000001],4[0x4]) failed.
Gives -134217728[0xf8000000]. Should be 134217728[0x8000000]
Test logicalShift(-2147483647[0x80000001],5[0x5]) failed.
Gives -67108864[0xfc000000]. Should be 67108864[0x4000000]
Test logicalShift(-2147483647[0x80000001],6[0x6]) failed.
Gives -33554432[0xfe000000]. Should be 33554432[0x2000000]
Test logicalShift(-2147483647[0x80000001],7[0x7]) failed.
Gives -16777216[0xff000000]. Should be 16777216[0x1000000]
Test logicalShift(-2147483647[0x80000001],8[0x8]) failed.
Gives -8388608[0xff800000]. Should be 8388608[0x800000]
Test logicalShift(-2147483647[0x80000001],9[0x9]) failed.
Gives -4194304[0xffc00000]. Should be 4194304[0x400000]
Test logicalShift(-2147483647[0x80000001],10[0xa]) failed.
Gives -2097152[0xffe00000]. Should be 2097152[0x200000]
Test logicalShift(-2147483647[0x80000001],11[0xb]) failed.
Gives -1048576[0xfff00000]. Should be 1048576[0x100000]
Test logicalShift(-2147483647[0x80000001],12[0xc]) failed.
Gives -524288[0xfff80000]. Should be 524288[0x80000]
Test logicalShift(-2147483647[0x80000001],13[0xd]) failed.
Gives -262144[0xfffc0000]. Should be 262144[0x40000]
Test logicalShift(-2147483647[0x80000001],14[0xe]) failed.
Gives -131072[0xfffe0000]. Should be 131072[0x20000]
Test logicalShift(-2147483647[0x80000001],15[0xf]) failed.
Gives -65536[0xffff0000]. Should be 65536[0x10000]
Test logicalShift(-2147483647[0x80000001],16[0x10]) failed.
Gives -32768[0xffff8000]. Should be 32768[0x8000]
Test logicalShift(-2147483647[0x80000001],17[0x11]) failed.
Gives -16384[0xffffc000]. Should be 16384[0x4000]
Test logicalShift(-2147483647[0x80000001],18[0x12]) failed.
Gives -8192[0xffffe000]. Should be 8192[0x2000]
Test logicalShift(-2147483647[0x80000001],19[0x13]) failed.
Gives -4096[0xfffff000]. Should be 4096[0x1000]
Test logicalShift(-2147483647[0x80000001],20[0x14]) failed.
Gives -2048[0xfffff800]. Should be 2048[0x800]
Test logicalShift(-2147483647[0x80000001],21[0x15]) failed.
Gives -1024[0xfffffc00]. Should be 1024[0x400]
Test logicalShift(-2147483647[0x80000001],22[0x16]) failed.
Gives -512[0xfffffe00]. Should be 512[0x200]
Test logicalShift(-2147483647[0x80000001],23[0x17]) failed.
Gives -256[0xffffff00]. Should be 256[0x100]
Test logicalShift(-2147483647[0x80000001],24[0x18]) failed.
Gives -128[0xffffff80]. Should be 128[0x80]
Test logicalShift(-2147483647[0x80000001],25[0x19]) failed.
Gives -64[0xffffffc0]. Should be 64[0x40]
Test logicalShift(-2147483647[0x80000001],26[0x1a]) failed.
Gives -32[0xffffffe0]. Should be 32[0x20]
Test logicalShift(-2147483647[0x80000001],27[0x1b]) failed.
Gives -16[0xfffffff0]. Should be 16[0x10]
Test logicalShift(-2147483647[0x80000001],28[0x1c]) failed.
Gives -8[0xfffffff8]. Should be 8[0x8]
Test logicalShift(-2147483647[0x80000001],29[0x1d]) failed.
Gives -4[0xfffffffc]. Should be 4[0x4]
Test logicalShift(-2147483647[0x80000001],30[0x1e]) failed.
Gives -2[0xfffffffe]. Should be 2[0x2]
Test logicalShift(-2147483647[0x80000001],31[0x1f]) failed.
Gives -1[0xffffffff]. Should be 1[0x1]
Test logicalShift(-2[0xfffffffe],1[0x1]) failed.
Gives -1[0xffffffff]. Should be 2147483647[0x7fffffff]
Test logicalShift(-2[0xfffffffe],2[0x2]) failed.
Gives -1[0xffffffff]. Should be 1073741823[0x3fffffff]
Test logicalShift(-2[0xfffffffe],3[0x3]) failed.
Gives -1[0xffffffff]. Should be 536870911[0x1fffffff]
Test logicalShift(-2[0xfffffffe],4[0x4]) failed.
Gives -1[0xffffffff]. Should be 268435455[0xfffffff]
Test logicalShift(-2[0xfffffffe],5[0x5]) failed.
Gives -1[0xffffffff]. Should be 134217727[0x7ffffff]
Test logicalShift(-2[0xfffffffe],6[0x6]) failed.
Gives -1[0xffffffff]. Should be 67108863[0x3ffffff]
Test logicalShift(-2[0xfffffffe],7[0x7]) failed.
Gives -1[0xffffffff]. Should be 33554431[0x1ffffff]
Test logicalShift(-2[0xfffffffe],8[0x8]) failed.
Gives -1[0xffffffff]. Should be 16777215[0xffffff]
Test logicalShift(-2[0xfffffffe],9[0x9]) failed.
Gives -1[0xffffffff]. Should be 8388607[0x7fffff]
Test logicalShift(-2[0xfffffffe],10[0xa]) failed.
Gives -1[0xffffffff]. Should be 4194303[0x3fffff]
Test logicalShift(-2[0xfffffffe],11[0xb]) failed.
Gives -1[0xffffffff]. Should be 2097151[0x1fffff]
Test logicalShift(-2[0xfffffffe],12[0xc]) failed.
Gives -1[0xffffffff]. Should be 1048575[0xfffff]
Test logicalShift(-2[0xfffffffe],13[0xd]) failed.
Gives -1[0xffffffff]. Should be 524287[0x7ffff]
Test logicalShift(-2[0xfffffffe],14[0xe]) failed.
Gives -1[0xffffffff]. Should be 262143[0x3ffff]
Test logicalShift(-2[0xfffffffe],15[0xf]) failed.
Gives -1[0xffffffff]. Should be 131071[0x1ffff]
Test logicalShift(-2[0xfffffffe],16[0x10]) failed.
Gives -1[0xffffffff]. Should be 65535[0xffff]
Test logicalShift(-2[0xfffffffe],17[0x11]) failed.
Gives -1[0xffffffff]. Should be 32767[0x7fff]
Test logicalShift(-2[0xfffffffe],18[0x12]) failed.
Gives -1[0xffffffff]. Should be 16383[0x3fff]
Test logicalShift(-2[0xfffffffe],19[0x13]) failed.
Gives -1[0xffffffff]. Should be 8191[0x1fff]
Test logicalShift(-2[0xfffffffe],20[0x14]) failed.
Gives -1[0xffffffff]. Should be 4095[0xfff]
Test logicalShift(-2[0xfffffffe],21[0x15]) failed.
Gives -1[0xffffffff]. Should be 2047[0x7ff]
Test logicalShift(-2[0xfffffffe],22[0x16]) failed.
Gives -1[0xffffffff]. Should be 1023[0x3ff]
Test logicalShift(-2[0xfffffffe],23[0x17]) failed.
Gives -1[0xffffffff]. Should be 511[0x1ff]
Test logicalShift(-2[0xfffffffe],24[0x18]) failed.
Gives -1[0xffffffff]. Should be 255[0xff]
Test logicalShift(-2[0xfffffffe],25[0x19]) failed.
Gives -1[0xffffffff]. Should be 127[0x7f]
Test logicalShift(-2[0xfffffffe],26[0x1a]) failed.
Gives -1[0xffffffff]. Should be 63[0x3f]
Test logicalShift(-2[0xfffffffe],27[0x1b]) failed.
Gives -1[0xffffffff]. Should be 31[0x1f]
Test logicalShift(-2[0xfffffffe],28[0x1c]) failed.
Gives -1[0xffffffff]. Should be 15[0xf]
Test logicalShift(-2[0xfffffffe],29[0x1d]) failed.
Gives -1[0xffffffff]. Should be 7[0x7]
Test logicalShift(-2[0xfffffffe],30[0x1e]) failed.
Gives -1[0xffffffff]. Should be 3[0x3]
Test logicalShift(-2[0xfffffffe],31[0x1f]) failed.
Gives -1[0xffffffff]. Should be 1[0x1]
Test logicalShift(-1164072841[0xba9da877],1[0x1]) failed.
Gives -582036421[0xdd4ed43b]. Should be 1565447227[0x5d4ed43b]
Test logicalShift(-1164072841[0xba9da877],2[0x2]) failed.
Gives -291018211[0xeea76a1d]. Should be 782723613[0x2ea76a1d]
Test logicalShift(-1164072841[0xba9da877],3[0x3]) failed.
Gives -145509106[0xf753b50e]. Should be 391361806[0x1753b50e]
Test logicalShift(-1164072841[0xba9da877],4[0x4]) failed.
Gives -72754553[0xfba9da87]. Should be 195680903[0xba9da87]
Test logicalShift(-1164072841[0xba9da877],5[0x5]) failed.
Gives -36377277[0xfdd4ed43]. Should be 97840451[0x5d4ed43]
Test logicalShift(-1164072841[0xba9da877],6[0x6]) failed.
Gives -18188639[0xfeea76a1]. Should be 48920225[0x2ea76a1]
Test logicalShift(-1164072841[0xba9da877],7[0x7]) failed.
Gives -9094320[0xff753b50]. Should be 24460112[0x1753b50]
Test logicalShift(-1164072841[0xba9da877],8[0x8]) failed.
Gives -4547160[0xffba9da8]. Should be 12230056[0xba9da8]
Test logicalShift(-1164072841[0xba9da877],9[0x9]) failed.
Gives -2273580[0xffdd4ed4]. Should be 6115028[0x5d4ed4]
Test logicalShift(-1164072841[0xba9da877],10[0xa]) failed.
Gives -1136790[0xffeea76a]. Should be 3057514[0x2ea76a]
Test logicalShift(-1164072841[0xba9da877],11[0xb]) failed.
Gives -568395[0xfff753b5]. Should be 1528757[0x1753b5]
Test logicalShift(-1164072841[0xba9da877],12[0xc]) failed.
Gives -284198[0xfffba9da]. Should be 764378[0xba9da]
Test logicalShift(-1164072841[0xba9da877],13[0xd]) failed.
Gives -142099[0xfffdd4ed]. Should be 382189[0x5d4ed]
Test logicalShift(-1164072841[0xba9da877],14[0xe]) failed.
Gives -71050[0xfffeea76]. Should be 191094[0x2ea76]
Test logicalShift(-1164072841[0xba9da877],15[0xf]) failed.
Gives -35525[0xffff753b]. Should be 95547[0x1753b]
Test logicalShift(-1164072841[0xba9da877],16[0x10]) failed.
Gives -17763[0xffffba9d]. Should be 47773[0xba9d]
Test logicalShift(-1164072841[0xba9da877],17[0x11]) failed.
Gives -8882[0xffffdd4e]. Should be 23886[0x5d4e]
Test logicalShift(-1164072841[0xba9da877],18[0x12]) failed.
Gives -4441[0xffffeea7]. Should be 11943[0x2ea7]
Test logicalShift(-1164072841[0xba9da877],19[0x13]) failed.
Gives -2221[0xfffff753]. Should be 5971[0x1753]
Test logicalShift(-1164072841[0xba9da877],20[0x14]) failed.
Gives -1111[0xfffffba9]. Should be 2985[0xba9]
Test logicalShift(-1164072841[0xba9da877],21[0x15]) failed.
Gives -556[0xfffffdd4]. Should be 1492[0x5d4]
Test logicalShift(-1164072841[0xba9da877],22[0x16]) failed.
Gives -278[0xfffffeea]. Should be 746[0x2ea]
Test logicalShift(-1164072841[0xba9da877],23[0x17]) failed.
Gives -139[0xffffff75]. Should be 373[0x175]
Test logicalShift(-1164072841[0xba9da877],24[0x18]) failed.
Gives -70[0xffffffba]. Should be 186[0xba]
Test logicalShift(-1164072841[0xba9da877],25[0x19]) failed.
Gives -35[0xffffffdd]. Should be 93[0x5d]
Test logicalShift(-1164072841[0xba9da877],26[0x1a]) failed.
Gives -18[0xffffffee]. Should be 46[0x2e]
Test logicalShift(-1164072841[0xba9da877],27[0x1b]) failed.
Gives -9[0xfffffff7]. Should be 23[0x17]
Test logicalShift(-1164072841[0xba9da877],28[0x1c]) failed.
Gives -5[0xfffffffb]. Should be 11[0xb]
Test logicalShift(-1164072841[0xba9da877],29[0x1d]) failed.
Gives -3[0xfffffffd]. Should be 5[0x5]
Test logicalShift(-1164072841[0xba9da877],30[0x1e]) failed.
Gives -2[0xfffffffe]. Should be 2[0x2]
Test logicalShift(-1164072841[0xba9da877],31[0x1f]) failed.
Gives -1[0xffffffff]. Should be 1[0x1]
Test logicalShift(-2147483646[0x80000002],1[0x1]) failed.
Gives -1073741823[0xc0000001]. Should be 1073741825[0x40000001]
Test logicalShift(-2147483646[0x80000002],2[0x2]) failed.
Gives -536870912[0xe0000000]. Should be 536870912[0x20000000]
Test logicalShift(-2147483646[0x80000002],3[0x3]) failed.
Gives -268435456[0xf0000000]. Should be 268435456[0x10000000]
Test logicalShift(-2147483646[0x80000002],4[0x4]) failed.
Gives -134217728[0xf8000000]. Should be 134217728[0x8000000]
Test logicalShift(-2147483646[0x80000002],5[0x5]) failed.
Gives -67108864[0xfc000000]. Should be 67108864[0x4000000]
Test logicalShift(-2147483646[0x80000002],6[0x6]) failed.
Gives -33554432[0xfe000000]. Should be 33554432[0x2000000]
Test logicalShift(-2147483646[0x80000002],7[0x7]) failed.
Gives -16777216[0xff000000]. Should be 16777216[0x1000000]
Test logicalShift(-2147483646[0x80000002],8[0x8]) failed.
Gives -8388608[0xff800000]. Should be 8388608[0x800000]
Test logicalShift(-2147483646[0x80000002],9[0x9]) failed.
Gives -4194304[0xffc00000]. Should be 4194304[0x400000]
Test logicalShift(-2147483646[0x80000002],10[0xa]) failed.
Gives -2097152[0xffe00000]. Should be 2097152[0x200000]
Test logicalShift(-2147483646[0x80000002],11[0xb]) failed.
Gives -1048576[0xfff00000]. Should be 1048576[0x100000]
Test logicalShift(-2147483646[0x80000002],12[0xc]) failed.
Gives -524288[0xfff80000]. Should be 524288[0x80000]
Test logicalShift(-2147483646[0x80000002],13[0xd]) failed.
Gives -262144[0xfffc0000]. Should be 262144[0x40000]
Test logicalShift(-2147483646[0x80000002],14[0xe]) failed.
Gives -131072[0xfffe0000]. Should be 131072[0x20000]
Test logicalShift(-2147483646[0x80000002],15[0xf]) failed.
Gives -65536[0xffff0000]. Should be 65536[0x10000]
Test logicalShift(-2147483646[0x80000002],16[0x10]) failed.
Gives -32768[0xffff8000]. Should be 32768[0x8000]
Test logicalShift(-2147483646[0x80000002],17[0x11]) failed.
Gives -16384[0xffffc000]. Should be 16384[0x4000]
Test logicalShift(-2147483646[0x80000002],18[0x12]) failed.
Gives -8192[0xffffe000]. Should be 8192[0x2000]
Test logicalShift(-2147483646[0x80000002],19[0x13]) failed.
Gives -4096[0xfffff000]. Should be 4096[0x1000]
Test logicalShift(-2147483646[0x80000002],20[0x14]) failed.
Gives -2048[0xfffff800]. Should be 2048[0x800]
Test logicalShift(-2147483646[0x80000002],21[0x15]) failed.
Gives -1024[0xfffffc00]. Should be 1024[0x400]
Test logicalShift(-2147483646[0x80000002],22[0x16]) failed.
Gives -512[0xfffffe00]. Should be 512[0x200]
Test logicalShift(-2147483646[0x80000002],23[0x17]) failed.
Gives -256[0xffffff00]. Should be 256[0x100]
Test logicalShift(-2147483646[0x80000002],24[0x18]) failed.
Gives -128[0xffffff80]. Should be 128[0x80]
Test logicalShift(-2147483646[0x80000002],25[0x19]) failed.
Gives -64[0xffffffc0]. Should be 64[0x40]
Test logicalShift(-2147483646[0x80000002],26[0x1a]) failed.
Gives -32[0xffffffe0]. Should be 32[0x20]
Test logicalShift(-2147483646[0x80000002],27[0x1b]) failed.
Gives -16[0xfffffff0]. Should be 16[0x10]
Test logicalShift(-2147483646[0x80000002],28[0x1c]) failed.
Gives -8[0xfffffff8]. Should be 8[0x8]
Test logicalShift(-2147483646[0x80000002],29[0x1d]) failed.
Gives -4[0xfffffffc]. Should be 4[0x4]
Test logicalShift(-2147483646[0x80000002],30[0x1e]) failed.
Gives -2[0xfffffffe]. Should be 2[0x2]
Test logicalShift(-2147483646[0x80000002],31[0x1f]) failed.
Gives -1[0xffffffff]. Should be 1[0x1]
Test logicalShift(-1[0xffffffff],1[0x1]) failed.
Gives -1[0xffffffff]. Should be 2147483647[0x7fffffff]
Test logicalShift(-1[0xffffffff],2[0x2]) failed.
Gives -1[0xffffffff]. Should be 1073741823[0x3fffffff]
Test logicalShift(-1[0xffffffff],3[0x3]) failed.
Gives -1[0xffffffff]. Should be 536870911[0x1fffffff]
Test logicalShift(-1[0xffffffff],4[0x4]) failed.
Gives -1[0xffffffff]. Should be 268435455[0xfffffff]
Test logicalShift(-1[0xffffffff],5[0x5]) failed.
Gives -1[0xffffffff]. Should be 134217727[0x7ffffff]
Test logicalShift(-1[0xffffffff],6[0x6]) failed.
Gives -1[0xffffffff]. Should be 67108863[0x3ffffff]
Test logicalShift(-1[0xffffffff],7[0x7]) failed.
Gives -1[0xffffffff]. Should be 33554431[0x1ffffff]
Test logicalShift(-1[0xffffffff],8[0x8]) failed.
Gives -1[0xffffffff]. Should be 16777215[0xffffff]
Test logicalShift(-1[0xffffffff],9[0x9]) failed.
Gives -1[0xffffffff]. Should be 8388607[0x7fffff]
Test logicalShift(-1[0xffffffff],10[0xa]) failed.
Gives -1[0xffffffff]. Should be 4194303[0x3fffff]
Test logicalShift(-1[0xffffffff],11[0xb]) failed.
Gives -1[0xffffffff]. Should be 2097151[0x1fffff]
Test logicalShift(-1[0xffffffff],12[0xc]) failed.
Gives -1[0xffffffff]. Should be 1048575[0xfffff]
Test logicalShift(-1[0xffffffff],13[0xd]) failed.
Gives -1[0xffffffff]. Should be 524287[0x7ffff]
Test logicalShift(-1[0xffffffff],14[0xe]) failed.
Gives -1[0xffffffff]. Should be 262143[0x3ffff]
Test logicalShift(-1[0xffffffff],15[0xf]) failed.
Gives -1[0xffffffff]. Should be 131071[0x1ffff]
Test logicalShift(-1[0xffffffff],16[0x10]) failed.
Gives -1[0xffffffff]. Should be 65535[0xffff]
Test logicalShift(-1[0xffffffff],17[0x11]) failed.
Gives -1[0xffffffff]. Should be 32767[0x7fff]
Test logicalShift(-1[0xffffffff],18[0x12]) failed.
Gives -1[0xffffffff]. Should be 16383[0x3fff]
Test logicalShift(-1[0xffffffff],19[0x13]) failed.
Gives -1[0xffffffff]. Should be 8191[0x1fff]
Test logicalShift(-1[0xffffffff],20[0x14]) failed.
Gives -1[0xffffffff]. Should be 4095[0xfff]
Test logicalShift(-1[0xffffffff],21[0x15]) failed.
Gives -1[0xffffffff]. Should be 2047[0x7ff]
Test logicalShift(-1[0xffffffff],22[0x16]) failed.
Gives -1[0xffffffff]. Should be 1023[0x3ff]
Test logicalShift(-1[0xffffffff],23[0x17]) failed.
Gives -1[0xffffffff]. Should be 511[0x1ff]
Test logicalShift(-1[0xffffffff],24[0x18]) failed.
Gives -1[0xffffffff]. Should be 255[0xff]
Test logicalShift(-1[0xffffffff],25[0x19]) failed.
Gives -1[0xffffffff]. Should be 127[0x7f]
Test logicalShift(-1[0xffffffff],26[0x1a]) failed.
Gives -1[0xffffffff]. Should be 63[0x3f]
Test logicalShift(-1[0xffffffff],27[0x1b]) failed.
Gives -1[0xffffffff]. Should be 31[0x1f]
Test logicalShift(-1[0xffffffff],28[0x1c]) failed.
Gives -1[0xffffffff]. Should be 15[0xf]
Test logicalShift(-1[0xffffffff],29[0x1d]) failed.
Gives -1[0xffffffff]. Should be 7[0x7]
Test logicalShift(-1[0xffffffff],30[0x1e]) failed.
Gives -1[0xffffffff]. Should be 3[0x3]
Test logicalShift(-1[0xffffffff],31[0x1f]) failed.
Gives -1[0xffffffff]. Should be 1[0x1]
Test logicalShift(-2147483645[0x80000003],1[0x1]) failed.
Gives -1073741823[0xc0000001]. Should be 1073741825[0x40000001]
Test logicalShift(-2147483645[0x80000003],2[0x2]) failed.
Gives -536870912[0xe0000000]. Should be 536870912[0x20000000]
Test logicalShift(-2147483645[0x80000003],3[0x3]) failed.
Gives -268435456[0xf0000000]. Should be 268435456[0x10000000]
Test logicalShift(-2147483645[0x80000003],4[0x4]) failed.
Gives -134217728[0xf8000000]. Should be 134217728[0x8000000]
Test logicalShift(-2147483645[0x80000003],5[0x5]) failed.
Gives -67108864[0xfc000000]. Should be 67108864[0x4000000]
Test logicalShift(-2147483645[0x80000003],6[0x6]) failed.
Gives -33554432[0xfe000000]. Should be 33554432[0x2000000]
Test logicalShift(-2147483645[0x80000003],7[0x7]) failed.
Gives -16777216[0xff000000]. Should be 16777216[0x1000000]
Test logicalShift(-2147483645[0x80000003],8[0x8]) failed.
Gives -8388608[0xff800000]. Should be 8388608[0x800000]
Test logicalShift(-2147483645[0x80000003],9[0x9]) failed.
Gives -4194304[0xffc00000]. Should be 4194304[0x400000]
Test logicalShift(-2147483645[0x80000003],10[0xa]) failed.
Gives -2097152[0xffe00000]. Should be 2097152[0x200000]
Test logicalShift(-2147483645[0x80000003],11[0xb]) failed.
Gives -1048576[0xfff00000]. Should be 1048576[0x100000]
Test logicalShift(-2147483645[0x80000003],12[0xc]) failed.
Gives -524288[0xfff80000]. Should be 524288[0x80000]
Test logicalShift(-2147483645[0x80000003],13[0xd]) failed.
Gives -262144[0xfffc0000]. Should be 262144[0x40000]
Test logicalShift(-2147483645[0x80000003],14[0xe]) failed.
Gives -131072[0xfffe0000]. Should be 131072[0x20000]
Test logicalShift(-2147483645[0x80000003],15[0xf]) failed.
Gives -65536[0xffff0000]. Should be 65536[0x10000]
Test logicalShift(-2147483645[0x80000003],16[0x10]) failed.
Gives -32768[0xffff8000]. Should be 32768[0x8000]
Test logicalShift(-2147483645[0x80000003],17[0x11]) failed.
Gives -16384[0xffffc000]. Should be 16384[0x4000]
Test logicalShift(-2147483645[0x80000003],18[0x12]) failed.
Gives -8192[0xffffe000]. Should be 8192[0x2000]
Test logicalShift(-2147483645[0x80000003],19[0x13]) failed.
Gives -4096[0xfffff000]. Should be 4096[0x1000]
Test logicalShift(-2147483645[0x80000003],20[0x14]) failed.
Gives -2048[0xfffff800]. Should be 2048[0x800]
Test logicalShift(-2147483645[0x80000003],21[0x15]) failed.
Gives -1024[0xfffffc00]. Should be 1024[0x400]
Test logicalShift(-2147483645[0x80000003],22[0x16]) failed.
Gives -512[0xfffffe00]. Should be 512[0x200]
Test logicalShift(-2147483645[0x80000003],23[0x17]) failed.
Gives -256[0xffffff00]. Should be 256[0x100]
Test logicalShift(-2147483645[0x80000003],24[0x18]) failed.
Gives -128[0xffffff80]. Should be 128[0x80]
Test logicalShift(-2147483645[0x80000003],25[0x19]) failed.
Gives -64[0xffffffc0]. Should be 64[0x40]
Test logicalShift(-2147483645[0x80000003],26[0x1a]) failed.
Gives -32[0xffffffe0]. Should be 32[0x20]
Test logicalShift(-2147483645[0x80000003],27[0x1b]) failed.
Gives -16[0xfffffff0]. Should be 16[0x10]
Test logicalShift(-2147483645[0x80000003],28[0x1c]) failed.
Gives -8[0xfffffff8]. Should be 8[0x8]
Test logicalShift(-2147483645[0x80000003],29[0x1d]) failed.
Gives -4[0xfffffffc]. Should be 4[0x4]
Test logicalShift(-2147483645[0x80000003],30[0x1e]) failed.
Gives -2[0xfffffffe]. Should be 2[0x2]
Test logicalShift(-2147483645[0x80000003],31[0x1f]) failed.
Gives -1[0xffffffff]. Should be 1[0x1]
Test logicalShift(-642698139[0xd9b13465],1[0x1]) failed.
Gives -321349070[0xecd89a32]. Should be 1826134578[0x6cd89a32]
Test logicalShift(-642698139[0xd9b13465],2[0x2]) failed.
Gives -160674535[0xf66c4d19]. Should be 913067289[0x366c4d19]
Test logicalShift(-642698139[0xd9b13465],3[0x3]) failed.
Gives -80337268[0xfb36268c]. Should be 456533644[0x1b36268c]
Test logicalShift(-642698139[0xd9b13465],4[0x4]) failed.
Gives -40168634[0xfd9b1346]. Should be 228266822[0xd9b1346]
Test logicalShift(-642698139[0xd9b13465],5[0x5]) failed.
Gives -20084317[0xfecd89a3]. Should be 114133411[0x6cd89a3]
Test logicalShift(-642698139[0xd9b13465],6[0x6]) failed.
Gives -10042159[0xff66c4d1]. Should be 57066705[0x366c4d1]
Test logicalShift(-642698139[0xd9b13465],7[0x7]) failed.
Gives -5021080[0xffb36268]. Should be 28533352[0x1b36268]
Test logicalShift(-642698139[0xd9b13465],8[0x8]) failed.
Gives -2510540[0xffd9b134]. Should be 14266676[0xd9b134]
Test logicalShift(-642698139[0xd9b13465],9[0x9]) failed.
Gives -1255270[0xffecd89a]. Should be 7133338[0x6cd89a]
Test logicalShift(-642698139[0xd9b13465],10[0xa]) failed.
Gives -627635[0xfff66c4d]. Should be 3566669[0x366c4d]
Test logicalShift(-642698139[0xd9b13465],11[0xb]) failed.
Gives -313818[0xfffb3626]. Should be 1783334[0x1b3626]
Test logicalShift(-642698139[0xd9b13465],12[0xc]) failed.
Gives -156909[0xfffd9b13]. Should be 891667[0xd9b13]
Test logicalShift(-642698139[0xd9b13465],13[0xd]) failed.
Gives -78455[0xfffecd89]. Should be 445833[0x6cd89]
Test logicalShift(-642698139[0xd9b13465],14[0xe]) failed.
Gives -39228[0xffff66c4]. Should be 222916[0x366c4]
Test logicalShift(-642698139[0xd9b13465],15[0xf]) failed.
Gives -19614[0xffffb362]. Should be 111458[0x1b362]
Test logicalShift(-642698139[0xd9b13465],16[0x10]) failed.
Gives -9807[0xffffd9b1]. Should be 55729[0xd9b1]
Test logicalShift(-642698139[0xd9b13465],17[0x11]) failed.
Gives -4904[0xffffecd8]. Should be 27864[0x6cd8]
Test logicalShift(-642698139[0xd9b13465],18[0x12]) failed.
Gives -2452[0xfffff66c]. Should be 13932[0x366c]
Test logicalShift(-642698139[0xd9b13465],19[0x13]) failed.
Gives -1226[0xfffffb36]. Should be 6966[0x1b36]
Test logicalShift(-642698139[0xd9b13465],20[0x14]) failed.
Gives -613[0xfffffd9b]. Should be 3483[0xd9b]
Test logicalShift(-642698139[0xd9b13465],21[0x15]) failed.
Gives -307[0xfffffecd]. Should be 1741[0x6cd]
Test logicalShift(-642698139[0xd9b13465],22[0x16]) failed.
Gives -154[0xffffff66]. Should be 870[0x366]
Test logicalShift(-642698139[0xd9b13465],23[0x17]) failed.
Gives -77[0xffffffb3]. Should be 435[0x1b3]
Test logicalShift(-642698139[0xd9b13465],24[0x18]) failed.
Gives -39[0xffffffd9]. Should be 217[0xd9]
Test logicalShift(-642698139[0xd9b13465],25[0x19]) failed.
Gives -20[0xffffffec]. Should be 108[0x6c]
Test logicalShift(-642698139[0xd9b13465],26[0x1a]) failed.
Gives -10[0xfffffff6]. Should be 54[0x36]
Test logicalShift(-642698139[0xd9b13465],27[0x1b]) failed.
Gives -5[0xfffffffb]. Should be 27[0x1b]
Test logicalShift(-642698139[0xd9b13465],28[0x1c]) failed.
Gives -3[0xfffffffd]. Should be 13[0xd]
Test logicalShift(-642698139[0xd9b13465],29[0x1d]) failed.
Gives -2[0xfffffffe]. Should be 6[0x6]
Test logicalShift(-642698139[0xd9b13465],30[0x1e]) failed.
Gives -1[0xffffffff]. Should be 3[0x3]
Test logicalShift(-642698139[0xd9b13465],31[0x1f]) failed.
Gives -1[0xffffffff]. Should be 1[0x1]
Test logicalShift(-2147483644[0x80000004],1[0x1]) failed.
Gives -1073741822[0xc0000002]. Should be 1073741826[0x40000002]
Test logicalShift(-2147483644[0x80000004],2[0x2]) failed.
Gives -536870911[0xe0000001]. Should be 536870913[0x20000001]
Test logicalShift(-2147483644[0x80000004],3[0x3]) failed.
Gives -268435456[0xf0000000]. Should be 268435456[0x10000000]
Test logicalShift(-2147483644[0x80000004],4[0x4]) failed.
Gives -134217728[0xf8000000]. Should be 134217728[0x8000000]
Test logicalShift(-2147483644[0x80000004],5[0x5]) failed.
Gives -67108864[0xfc000000]. Should be 67108864[0x4000000]
Test logicalShift(-2147483644[0x80000004],6[0x6]) failed.
Gives -33554432[0xfe000000]. Should be 33554432[0x2000000]
Test logicalShift(-2147483644[0x80000004],7[0x7]) failed.
Gives -16777216[0xff000000]. Should be 16777216[0x1000000]
Test logicalShift(-2147483644[0x80000004],8[0x8]) failed.
Gives -8388608[0xff800000]. Should be 8388608[0x800000]
Test logicalShift(-2147483644[0x80000004],9[0x9]) failed.
Gives -4194304[0xffc00000]. Should be 4194304[0x400000]
Test logicalShift(-2147483644[0x80000004],10[0xa]) failed.
Gives -2097152[0xffe00000]. Should be 2097152[0x200000]
Test logicalShift(-2147483644[0x80000004],11[0xb]) failed.
Gives -1048576[0xfff00000]. Should be 1048576[0x100000]
Test logicalShift(-2147483644[0x80000004],12[0xc]) failed.
Gives -524288[0xfff80000]. Should be 524288[0x80000]
Test logicalShift(-2147483644[0x80000004],13[0xd]) failed.
Gives -262144[0xfffc0000]. Should be 262144[0x40000]
Test logicalShift(-2147483644[0x80000004],14[0xe]) failed.
Gives -131072[0xfffe0000]. Should be 131072[0x20000]
Test logicalShift(-2147483644[0x80000004],15[0xf]) failed.
Gives -65536[0xffff0000]. Should be 65536[0x10000]
Test logicalShift(-2147483644[0x80000004],16[0x10]) failed.
Gives -32768[0xffff8000]. Should be 32768[0x8000]
Test logicalShift(-2147483644[0x80000004],17[0x11]) failed.
Gives -16384[0xffffc000]. Should be 16384[0x4000]
Test logicalShift(-2147483644[0x80000004],18[0x12]) failed.
Gives -8192[0xffffe000]. Should be 8192[0x2000]
Test logicalShift(-2147483644[0x80000004],19[0x13]) failed.
Gives -4096[0xfffff000]. Should be 4096[0x1000]
Test logicalShift(-2147483644[0x80000004],20[0x14]) failed.
Gives -2048[0xfffff800]. Should be 2048[0x800]
Test logicalShift(-2147483644[0x80000004],21[0x15]) failed.
Gives -1024[0xfffffc00]. Should be 1024[0x400]
Test logicalShift(-2147483644[0x80000004],22[0x16]) failed.
Gives -512[0xfffffe00]. Should be 512[0x200]
Test logicalShift(-2147483644[0x80000004],23[0x17]) failed.
Gives -256[0xffffff00]. Should be 256[0x100]
Test logicalShift(-2147483644[0x80000004],24[0x18]) failed.
Gives -128[0xffffff80]. Should be 128[0x80]
Test logicalShift(-2147483644[0x80000004],25[0x19]) failed.
Gives -64[0xffffffc0]. Should be 64[0x40]
Test logicalShift(-2147483644[0x80000004],26[0x1a]) failed.
Gives -32[0xffffffe0]. Should be 32[0x20]
Test logicalShift(-2147483644[0x80000004],27[0x1b]) failed.
Gives -16[0xfffffff0]. Should be 16[0x10]
Test logicalShift(-2147483644[0x80000004],28[0x1c]) failed.
Gives -8[0xfffffff8]. Should be 8[0x8]
Test logicalShift(-2147483644[0x80000004],29[0x1d]) failed.
Gives -4[0xfffffffc]. Should be 4[0x4]
Test logicalShift(-2147483644[0x80000004],30[0x1e]) failed.
Gives -2[0xfffffffe]. Should be 2[0x2]
Test logicalShift(-2147483644[0x80000004],31[0x1f]) failed.
Gives -1[0xffffffff]. Should be 1[0x1]
Test logicalShift score: 0.00/3.00
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],-2147483648[0x80000000]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],2147483647[0x7fffffff]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],-3[0xfffffffd]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],1636649554[0x618d4a52]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],-2147483647[0x80000001]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],2147483646[0x7ffffffe]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],-2[0xfffffffe]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],605936546[0x241ddba2]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],-2147483646[0x80000002]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],2147483645[0x7ffffffd]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],-1[0xffffffff]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],-292257843[0xee947fcd]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],-2147483645[0x80000003]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],2147483644[0x7ffffffc]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],0[0x0]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],513662986[0x1e9de00a]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],-2147483644[0x80000004]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],2147483643[0x7ffffffb]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],1[0x1]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],-2147483648[0x80000000],-940342663[0xc7f38279]) failed.
Gives 2[0x2]. Should be -2147483648[0x80000000]
Test conditional(-2147483648[0x80000000],2147483647[0x7fffffff],-2147483648[0x80000000]) failed.
Gives 2[0x2]. Should be 2147483647[0x7fffffff]
Test conditional(-2147483648[0x80000000],2147483647[0x7fffffff],2147483647[0x7fffffff]) failed.
Gives 2[0x2]. Should be 2147483647[0x7fffffff]
Test conditional(-2147483648[0x80000000],2147483647[0x7fffffff],-3[0xfffffffd]) failed.