06bf8db6604e97a472e45a6e881b16657c6d0e40
[p5sagit/p5-mst-13.2.git] / t / op / oct.t
1 #!./perl
2
3 print "1..11\n";
4
5 print +(oct('01234') == 01234) ? "ok" : "not ok", " 1\n";
6 print +(oct('0x1234') == 0x1234) ? "ok" : "not ok", " 2\n";
7 print +(hex('01234') == 0x1234) ? "ok" : "not ok", " 3\n";
8 print +(oct('20000000000') == 020000000000) ? "ok" : "not ok", " 4\n";
9 print +(oct('x80000000') == 0x80000000) ? "ok" : "not ok", " 5\n";
10 print +(hex('80000000') == 0x80000000) ? "ok" : "not ok", " 6\n";
11 print +(oct('1234') == 668) ? "ok" : "not ok", " 7\n";
12 print +(hex('1234') == 4660) ? "ok" : "not ok", " 8\n";
13 print +(hex('0x1234') == 0x1234) ? "ok" : "not ok", " 9\n";
14 print +(oct('b11100') == 28) ? "ok" : "not ok", " 10\n";
15 print +(oct('b101010') == 0b101010) ? "ok" : "not ok", " 11\n";