patch to support computed regular subexpressions
[p5sagit/p5-mst-13.2.git] / t / op / oct.t
CommitLineData
8d063cd8 1#!./perl
2
79072805 3# $RCSfile: oct.t,v $$Revision: 4.1 $$Date: 92/08/07 18:28:08 $
8d063cd8 4
3524d3b9 5print "1..8\n";
8d063cd8 6
8ba208ab 7print +(oct('01234') == 01234) ? "ok" : "not ok", " 1\n";
8print +(oct('0x1234') == 0x1234) ? "ok" : "not ok", " 2\n";
9print +(hex('01234') == 0x1234) ? "ok" : "not ok", " 3\n";
10print +(oct('20000000000') == 020000000000) ? "ok" : "not ok", " 4\n";
11print +(oct('x80000000') == 0x80000000) ? "ok" : "not ok", " 5\n";
12print +(hex('80000000') == 0x80000000) ? "ok" : "not ok", " 6\n";
3524d3b9 13print +(oct('1234') == 668) ? "ok" : "not ok", " 7\n";
14print +(hex('1234') == 4660) ? "ok" : "not ok", " 8\n";