Test hex('x...').
[p5sagit/p5-mst-13.2.git] / t / op / ord.t
old mode 100644 (file)
new mode 100755 (executable)
index d95824f..bc6d924
@@ -1,14 +1,16 @@
 #!./perl
 
-# $Header: ord.t,v 4.0 91/03/20 01:53:50 lwall Locked $
-
-print "1..2\n";
+print "1..3\n";
 
 # compile time evaluation
 
-if (ord('A') == 65) {print "ok 1\n";} else {print "not ok 1\n";}
+# 65   ASCII
+# 193  EBCDIC
+if (ord('A') == 65 || ord('A') == 193) {print "ok 1\n";} else {print "not ok 1\n";}
 
 # run time evaluation
 
 $x = 'ABC';
-if (ord($x) == 65) {print "ok 2\n";} else {print "not ok 2\n";}
+if (ord($x) == 65 || ord($x) == 193) {print "ok 2\n";} else {print "not ok 2\n";}
+
+if (chr 65 == 'A' || chr 193 == 'A') {print "ok 3\n";} else {print "not ok 3\n";}