summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>1999-09-09 07:50:07 +0000
committerJarkko Hietaniemi <jhi@iki.fi>1999-09-09 07:50:07 +0000
commiteda88b6dbdc5ca6a51d54f58740f0210e618beb7 (patch)
tree8ac3a757e70b8b01b0305c66ea570b924f87607a /t
parent1fad5d67a57e82e2e07162e77599f2d6d5f7a565 (diff)
downloadperl-eda88b6dbdc5ca6a51d54f58740f0210e618beb7.tar.gz
%#b in particular and %B in general were kaputt.
p4raw-id: //depot/cfgperl@4111
Diffstat (limited to 't')
-rwxr-xr-xt/op/sprintf.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/op/sprintf.t b/t/op/sprintf.t
index ef5b94cb11..582dfb4a16 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 %b","hi",123,0,456,0,ord('A'),3.0999,11);
-if ($x eq ' hi 123 %foo 456 0A3.1 1011' && $w == 0) {
+$x = sprintf("%3s %-4s%%foo %.0d%5d %#x%c%3.1f %b %x %X %#b %#B %#x %#X","hi",123,0,456,0,ord('A'),3.0999,11,171,171,11,11,171,171);
+if ($x eq ' hi 123 %foo 456 0A3.1 1011 ab AB 0b1011 0B1011 0xab 0XAB' && $w == 0) {
print "ok 1\n";
} else {
print "not ok 1 '$x'\n";