Skip Menu |

This queue is for tickets about the Carp-Always CPAN distribution.

Report information
The Basics
Id: 77656
Status: resolved
Priority: 0/
Queue: Carp-Always

People
Owner: Nobody in particular
Requestors: jquelin [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: 0.12



Subject: t/pod.t fails due to bad encoding
excerpt from the tests: # Failed test 'POD test for lib/Carp/Always.pm' # at /usr/lib/perl5/vendor_perl/5.12.3/Test/Pod.pm line 182. # lib/Carp/Always.pm (98): Non-ASCII character seen before =encoding in 'S�bastien'. Assuming ISO8859-1 # Failed test 'POD test for blib/lib/Carp/Always.pm' # at /usr/lib/perl5/vendor_perl/5.12.3/Test/Pod.pm line 182. # blib/lib/Carp/Always.pm (98): Non-ASCII character seen before =encoding in 'S�bastien'. Assuming ISO8859-1 # Looks like you failed 2 tests of 7. t/099pod.t ........... Dubious, test returned 2 (wstat 512, 0x200) Failed 2/7 subtests ==> please consider skipping those authoring tests in final release
On Wed Jun 06 04:11:20 2012, JQUELIN wrote: Show quoted text
> excerpt from the tests: > > # Failed test 'POD test for lib/Carp/Always.pm' > # at /usr/lib/perl5/vendor_perl/5.12.3/Test/Pod.pm line 182. > # lib/Carp/Always.pm (98): Non-ASCII character seen before =encoding
in Show quoted text
> 'S�bastien'. Assuming ISO8859-1 > > # Failed test 'POD test for blib/lib/Carp/Always.pm' > # at /usr/lib/perl5/vendor_perl/5.12.3/Test/Pod.pm line 182. > # blib/lib/Carp/Always.pm (98): Non-ASCII character seen before > =encoding in 'S�bastien'. Assuming ISO8859-1 > # Looks like you failed 2 tests of 7. > t/099pod.t ........... > Dubious, test returned 2 (wstat 512, 0x200) > Failed 2/7 subtests > > > ==> please consider skipping those authoring tests in final release
Or apply the attached patch -- Reini Urban
Subject: encoding.patch
difforig diff -u ./lib/Carp/Always.pm.orig --- ./lib/Carp/Always.pm.orig 2012-06-11 16:35:40.003691068 -0500 +++ ./lib/Carp/Always.pm 2012-06-11 16:33:04.665150177 -0500 @@ -43,6 +43,8 @@ 1; __END__ +=encoding ISO8859-1 + =head1 NAME Carp::Always - Warns and dies noisily with stack backtraces
This should now be fixed with 0.12 release. Thanks, Jérôme and Reini.