Skip Menu |

This queue is for tickets about the Sys-Filesystem CPAN distribution.

Report information
The Basics
Id: 44012
Status: resolved
Priority: 0/
Queue: Sys-Filesystem

People
Owner: REHSACK [...] cpan.org
Requestors: mschwern [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Unimportant
Broken in: 1.23
Fixed in: (no value)



Subject: POD test failure
Tried 1.23 on OS X. Everything worked except the POD test. t/01pod.............1/10 # Failed test 'blib/lib/Sys/Filesystem/Aix.pm' # at /usr/local/perl/5.10.0/lib/site_perl/5.10.0/Test/Pod.pm line 159. # blib/lib/Sys/Filesystem/Aix.pm (312): Unknown directive: =over4 # blib/lib/Sys/Filesystem/Aix.pm (314): '=item' outside of any '=over' # Looks like you failed 1 test of 10. t/01pod............. Dubious, test returned 1 (wstat 256, 0x100)
On Tue Mar 10 13:05:44 2009, MSCHWERN wrote: Show quoted text
> Tried 1.23 on OS X. Everything worked except the POD test. > > t/01pod.............1/10 > # Failed test 'blib/lib/Sys/Filesystem/Aix.pm' > # at /usr/local/perl/5.10.0/lib/site_perl/5.10.0/Test/Pod.pm line 159. > # blib/lib/Sys/Filesystem/Aix.pm (312): Unknown directive: =over4 > # blib/lib/Sys/Filesystem/Aix.pm (314): '=item' outside of any '=over' > # Looks like you failed 1 test of 10. > t/01pod............. Dubious, test returned 1 (wstat 256, 0x100)
Hi, there is a problem with 312 line in lib/Sys/Filesystem/Aix.pm, should be '=over 4' instead '=over4'. The patch attached solve the problem (I had create it for upload to debian). Regards
Fix trivial problem related with pod in Aix.pm. Without it pod tests fails Index: Sys-Filesystem-1.23/lib/Sys/Filesystem/Aix.pm =================================================================== --- Sys-Filesystem-1.23.orig/lib/Sys/Filesystem/Aix.pm 2009-08-29 07:42:29.000000000 -0430 +++ Sys-Filesystem-1.23/lib/Sys/Filesystem/Aix.pm 2009-08-29 07:42:52.000000000 -0430 @@ -309,7 +309,7 @@ =head1 SEE ALSO -=over4 +=over 4 =item filesystems(4)
Fixed in 1.24