pike.git/
src/
testsuite.in
Branch:
Tag:
Non-build tags
All tags
No tags
2002-10-15
2002-10-15 14:21:00 by Marcus Comstedt <marcus@mc.pp.se>
0c50a2b1de8e9f066da9f566522510b52625f933 (
6
lines) (+
5
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Shift edge case tests added.
Rev: src/testsuite.in:1.551
1:
-
test_true([["$Id: testsuite.in,v 1.
550
2002/10/15
12
:
23
:
43
grubba
Exp $"]]);
+
test_true([["$Id: testsuite.in,v 1.
551
2002/10/15
14
:
21
:
00
marcus
Exp $"]]);
// This triggered a bug only if run sufficiently early. test_compile_any([[#pike 7.2]])
6350:
test_eq(1<<1,2) test_eq(1<<10,1024) test_eq(5<<3,40)
+
test_eval_error(17<<-10)
// testing >> test_eq(9>>2,2) test_eq(1>>1,0) test_eq(1024>>10,1) test_eq(47>>3,5)
-
+
test_eq(-10>>10000,-1)
+
test_eval_error(17>>-10)
// testing ? : test_true(0?0:1)