From: Peter Prymmer Date: Fri, 13 Oct 2000 14:44:49 +0000 (-0700) Subject: Tweak #7225. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=00b6c67e492220283a9c422cffcdf48a29dfe7a0;p=p5sagit%2Fp5-mst-13.2.git Tweak #7225. Subject: Re: [ID 20001006.014] Not OK: perl v5.7.0 +DEVEL7158 on os390 05.00 (UNINSTALLED) [PATCH bleadperl] Message-ID: p4raw-id: //depot/perl@7226 --- diff --git a/t/op/sprintf.t b/t/op/sprintf.t index 22b0b48..2f6cd27 100755 --- a/t/op/sprintf.t +++ b/t/op/sprintf.t @@ -56,7 +56,7 @@ for ($i = 1; @tests; $i++) { } elsif ($y eq ">$result<") # Some C libraries always give { # three-digit exponent - print("ok $i >$result< $x # three-digit exponent accepted\n"); + print("ok $i # >$result< $x three-digit exponent accepted\n"); } elsif ($result =~ /[-+]\d{3}$/ && # Suppress tests with modulo of exponent >= 100 on platforms @@ -64,8 +64,8 @@ for ($i = 1; @tests; $i++) { ((!eval {require POSIX}) || # Costly: only do this if we must! (length(&POSIX::DBL_MAX) - rindex(&POSIX::DBL_MAX, '+')) == 3)) { - print("ok $i >$template< >$data< >$result<", - " # Suppressed: exponent out of range?\n") + print("ok $i # >$template< >$data< >$result<", + " Suppressed: exponent out of range?\n") } else { $y = ($x eq $y ? "" : " => $y");