diff options
author | Wilson P. Snyder II <unknown@perl.org> | 1998-11-30 00:00:00 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1998-12-31 11:18:17 +0000 |
commit | 4f19785bce4da39a768aa6210f1f97ab4c0600dd (patch) | |
tree | d61c839a9780269b7b0766bad2487e8053caa5fd /t | |
parent | 142393a6492fce5c4bb6f282b1ba1d8da7c0064b (diff) | |
download | perl-4f19785bce4da39a768aa6210f1f97ab4c0600dd.tar.gz |
REV2: Binary number support
To: perl5-porters@perl.org
Message-ID: <199811301543.KAA15689@vulcan.maker.com>
p4raw-id: //depot/cfgperl@2546
Diffstat (limited to 't')
-rwxr-xr-x | t/op/oct.t | 4 | ||||
-rwxr-xr-x | t/op/sprintf.t | 4 | ||||
-rw-r--r-- | t/pragma/warn/util | 8 |
3 files changed, 13 insertions, 3 deletions
diff --git a/t/op/oct.t b/t/op/oct.t index 66230898ab..06bf8db660 100755 --- a/t/op/oct.t +++ b/t/op/oct.t @@ -1,6 +1,6 @@ #!./perl -print "1..9\n"; +print "1..11\n"; print +(oct('01234') == 01234) ? "ok" : "not ok", " 1\n"; print +(oct('0x1234') == 0x1234) ? "ok" : "not ok", " 2\n"; @@ -11,3 +11,5 @@ 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"; print +(hex('0x1234') == 0x1234) ? "ok" : "not ok", " 9\n"; +print +(oct('b11100') == 28) ? "ok" : "not ok", " 10\n"; +print +(oct('b101010') == 0b101010) ? "ok" : "not ok", " 11\n"; diff --git a/t/op/sprintf.t b/t/op/sprintf.t index b9b4751c79..ef5b94cb11 100755 --- a/t/op/sprintf.t +++ b/t/op/sprintf.t @@ -14,8 +14,8 @@ $SIG{__WARN__} = sub { }; $w = 0; -$x = sprintf("%3s %-4s%%foo %.0d%5d %#x%c%3.1f","hi",123,0,456,0,ord('A'),3.0999); -if ($x eq ' hi 123 %foo 456 0A3.1' && $w == 0) { +$x = sprintf("%3s %-4s%%foo %.0d%5d %#x%c%3.1f %b","hi",123,0,456,0,ord('A'),3.0999,11); +if ($x eq ' hi 123 %foo 456 0A3.1 1011' && $w == 0) { print "ok 1\n"; } else { print "not ok 1 '$x'\n"; diff --git a/t/pragma/warn/util b/t/pragma/warn/util index 649a2929ce..b63f89e139 100644 --- a/t/pragma/warn/util +++ b/t/pragma/warn/util @@ -6,6 +6,8 @@ Illegal hex digit ignored my $a = hex "0xv9" ; + Illegal binary digit ignored + my $a = oct "0b9" ; __END__ # util.c @@ -19,3 +21,9 @@ use warning 'unsafe' ; *a = hex "0xv9" ; EXPECT Illegal hex digit ignored at - line 3. +######## +# util.c +use warning 'unsafe' ; +*a = oct "0b9" ; +EXPECT +Illegal binary digit ignored at - line 3. |