From: Jarkko Hietaniemi Date: Wed, 6 Dec 2000 16:41:03 +0000 (+0000) Subject: Test \x{...} with ord(). X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ecf52eaff85b11f185422cca63f828288260ff2e;p=p5sagit%2Fp5-mst-13.2.git Test \x{...} with ord(). p4raw-id: //depot/perl@8015 --- diff --git a/t/op/ord.t b/t/op/ord.t index 22ff3af..f664078 100755 --- a/t/op/ord.t +++ b/t/op/ord.t @@ -1,11 +1,11 @@ #!./perl -print "1..5\n"; +print "1..8\n"; # compile time evaluation -# 65 ASCII -# 193 EBCDIC +# 'A' 65 ASCII +# 'A' 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; @@ -18,6 +18,17 @@ 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";} +print "not " unless ord(chr(500)) == 500; +print "ok 5\n"; + $x = 500; print "not " unless ord(chr($x)) == $x; -print "ok 5\n"; +print "ok 6\n"; + +print "not " unless ord("\x{1234}") == 0x1234; +print "ok 7\n"; + +$x = "\x{1234}"; +print "not " unless ord($x) == 0x1234; +print "ok 8\n"; +