diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 17:41:41 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-02-19 17:41:41 +0000 |
commit | bed171dfce7f6c0bdb7207be32c058f4d36fc432 (patch) | |
tree | 8e9b969a936003af592f08a46cdb8b8ad41e1790 /t/op/ord.t | |
parent | 453f904417cdcc40c685b37c28b80ff4c89a1c40 (diff) | |
download | perl-bed171dfce7f6c0bdb7207be32c058f4d36fc432.tar.gz |
tests, doc tweak (from Gisle Aas)
p4raw-id: //depot/perl@5153
Diffstat (limited to 't/op/ord.t')
-rwxr-xr-x | t/op/ord.t | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/t/op/ord.t b/t/op/ord.t index b1dc062a1f..22ff3af4ed 100755 --- a/t/op/ord.t +++ b/t/op/ord.t @@ -1,6 +1,6 @@ #!./perl -print "1..3\n"; +print "1..5\n"; # compile time evaluation @@ -8,9 +8,16 @@ print "1..3\n"; # 193 EBCDIC if (ord('A') == 65 || ord('A') == 193) {print "ok 1\n";} else {print "not ok 1\n";} +print "not " unless ord(chr(500)) == 500; +print "ok 2\n"; + # run time evaluation $x = 'ABC'; -if (ord($x) == 65 || ord($x) == 193) {print "ok 2\n";} else {print "not ok 2\n";} +if (ord($x) == 65 || ord($x) == 193) {print "ok 3\n";} else {print "not ok 3\n";} + +if (chr 65 eq 'A' || chr 193 eq 'A') {print "ok 4\n";} else {print "not ok 4\n";} -if (chr 65 eq 'A' || chr 193 eq 'A') {print "ok 3\n";} else {print "not ok 3\n";} +$x = 500; +print "not " unless ord(chr($x)) == $x; +print "ok 5\n"; |