In perl.git, the branch blead has been updated
<http://perl5.git.perl.org/perl.git/commitdiff/f60cb31d9ea9f1e3a5fc5e411fc7b1d8978b2dc2?hp=c0c194339c9162d3d4efc47e38b249ed5de6682b>
- Log -----------------------------------------------------------------
commit f60cb31d9ea9f1e3a5fc5e411fc7b1d8978b2dc2
Author: Nicholas Clark <nick@ccl4.org>
Date: Thu Jul 5 14:16:29 2012 -0700
[perl #112820] t/op/sprintf.t failure on FreeBSD 4.6
t/op/sprintf.t fails one test on FreeBSD 4.6
*Everything* else passes. This is a pleasant surprise.
Patch adds a skip for FreeBSD 4, and should not skip on FreeBSD 5 and later.
Tested on FreeBSD 7 too. Due to the way versions don't map to real numbers,
4.6 > 4.11, whereas 4.6 <= 4.9 (and 4.9 <= 4.9, 4.10 <= 4.9 and 4.11 <= 4.9)
so the skip skips for all releases of FreeBSD 4.
-----------------------------------------------------------------------
Summary of changes:
t/op/sprintf.t | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/t/op/sprintf.t b/t/op/sprintf.t
index 9c942b4..34086c8 100644
--- a/t/op/sprintf.t
+++ b/t/op/sprintf.t
@@ -399,7 +399,7 @@ __END__
> %.0g< >[]< > 0 MISSING<
>%.2g< >[]< >0 MISSING<
>%.2gC< >[]< >0C MISSING<
->%.0g< >-0.0< >-0< >C99 standard mandates minus sign but C89 does not skip: MSWin32 VMS hpux:10.20 openbsd netbsd:1.5 irix darwin<
+>%.0g< >-0.0< >-0< >C99 standard mandates minus sign but C89 does not skip: MSWin32 VMS hpux:10.20 openbsd netbsd:1.5 irix darwin freebsd:4.9<
>%.0g< >12345.6789< >1e+04<
>%#.0g< >12345.6789< >1.e+04<
>%.2g< >12345.6789< >1.2e+04<
--
Perl5 Master Repository