Commit | Line | Data |
---|---|---|
8d063cd8 LW |
1 | #!./perl |
2 | ||
04c29d09 GS |
3 | BEGIN { |
4 | chdir 't' if -d 't'; | |
20822f61 | 5 | @INC = '../lib'; |
04c29d09 GS |
6 | } |
7 | ||
0a3ece55 | 8 | print "1..7\n"; |
8d063cd8 LW |
9 | |
10 | # compile time evaluation | |
11 | ||
12 | if (int(1.234) == 1) {print "ok 1\n";} else {print "not ok 1\n";} | |
13 | ||
14 | if (int(-1.234) == -1) {print "ok 2\n";} else {print "not ok 2\n";} | |
15 | ||
16 | # run time evaluation | |
17 | ||
18 | $x = 1.234; | |
19 | if (int($x) == 1) {print "ok 3\n";} else {print "not ok 3\n";} | |
20 | if (int(-$x) == -1) {print "ok 4\n";} else {print "not ok 4\n";} | |
4bb9f687 GS |
21 | |
22 | $x = length("abc") % -10; | |
23 | print $x == -7 ? "ok 5\n" : "# expected -7, got $x\nnot ok 5\n"; | |
24 | ||
25 | { | |
26 | use integer; | |
27 | $x = length("abc") % -10; | |
ddc90e86 GS |
28 | $y = (3/-10)*-10; |
29 | print $x+$y == 3 && abs($x) < 10 ? "ok 6\n" : "not ok 6\n"; | |
4bb9f687 | 30 | } |
0a3ece55 MG |
31 | |
32 | # check bad strings still get converted | |
33 | ||
34 | @x = ( 6, 8, 10); | |
35 | print "not " if $x["1foo"] != 8; | |
36 | print "ok 7\n"; |