summaryrefslogtreecommitdiff
path: root/t/op/oct.t
diff options
context:
space:
mode:
authorTom Phoenix <rootbeer@teleport.com>1996-12-29 17:46:21 -0800
committerChip Salzenberg <chip@atlantic.net>1997-01-01 08:59:00 +1200
commit3524d3b9766c150548bbd837b65d78ef993d647d (patch)
treea2d6506da30da1584d4c784254b5258564f0e0c6 /t/op/oct.t
parentd5c001ddae568c5769b6a9eb70138c72d385cacb (diff)
downloadperl-3524d3b9766c150548bbd837b65d78ef993d647d.tar.gz
More tests
private-msgid: <Pine.GSO.3.95.961229170736.15213M-100000@solaris.teleport.co
Diffstat (limited to 't/op/oct.t')
-rwxr-xr-xt/op/oct.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/op/oct.t b/t/op/oct.t
index 7890643aef..24b5c4309d 100755
--- a/t/op/oct.t
+++ b/t/op/oct.t
@@ -2,7 +2,7 @@
# $RCSfile: oct.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:08 $
-print "1..6\n";
+print "1..8\n";
print +(oct('01234') == 01234) ? "ok" : "not ok", " 1\n";
print +(oct('0x1234') == 0x1234) ? "ok" : "not ok", " 2\n";
@@ -10,3 +10,5 @@ print +(hex('01234') == 0x1234) ? "ok" : "not ok", " 3\n";
print +(oct('20000000000') == 020000000000) ? "ok" : "not ok", " 4\n";
print +(oct('x80000000') == 0x80000000) ? "ok" : "not ok", " 5\n";
print +(hex('80000000') == 0x80000000) ? "ok" : "not ok", " 6\n";
+print +(oct('1234') == 668) ? "ok" : "not ok", " 7\n";
+print +(hex('1234') == 4660) ? "ok" : "not ok", " 8\n";