Skip Menu |

This queue is for tickets about the Data-HexDump-XXD CPAN distribution.

Report information
The Basics
Id: 87104
Status: resolved
Worked: 10 min
Priority: 0/
Queue: Data-HexDump-XXD

People
Owner: polettix [...] cpan.org
Requestors: ppisar [...] redhat.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: 0.1.1



Subject: t/pod.t fails
POD tests on Perl 5.18 that has stricter POD processing fails: $ ./Build test t/00.load.t ....... 1/1 # Testing Data::HexDump::XXD 0.1.0 t/00.load.t ....... ok t/01.xxd.t ........ ok t/02.xxd_r.t ...... ok Use of uninitialized value in split at /usr/share/perl5/vendor_perl/TAP/Parser/SourceHandler/Perl.pm line 170. t/pod-coverage.t .. ok Use of uninitialized value in split at /usr/share/perl5/vendor_perl/TAP/Parser/SourceHandler/Perl.pm line 170. t/pod.t ........... 1/1 # Failed test 'POD test for blib/lib/Data/HexDump/XXD.pm' # at /usr/share/perl5/vendor_perl/Test/Pod.pm line 186. # blib/lib/Data/HexDump/XXD.pm (167): Non-ASCII character seen before =encoding in '�'. Assuming ISO8859-1 # Looks like you failed 1 test of 1. t/pod.t ........... Dubious, test returned 1 (wstat 256, 0x100) Failed 1/1 subtests
From: ppisar [...] redhat.com
Dne So 20.čec.2013 10:46:29, ppisar napsal(a): Show quoted text
> POD tests on Perl 5.18 that has stricter POD processing fails: >
Fix is attached.
Subject: Data-HexDump-XXD-0.1.0-Declare-POD-encoding.patch
From ec1191fa03bddc7bf229da0c8125dd628cb9ab97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= <ppisar@redhat.com> Date: Sat, 20 Jul 2013 16:49:13 +0200 Subject: [PATCH] Declare POD encoding MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit <https://rt.cpan.org/Public/Bug/Display.html?id=87104>. Signed-off-by: Petr Písař <ppisar@redhat.com> --- lib/Data/HexDump/XXD.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Data/HexDump/XXD.pm b/lib/Data/HexDump/XXD.pm index c05a158..9bdc79f 100644 --- a/lib/Data/HexDump/XXD.pm +++ b/lib/Data/HexDump/XXD.pm @@ -63,6 +63,8 @@ sub xxd_r { 1; # Magic true value required at end of module __END__ +=encoding iso-8859-1 + =head1 NAME Data::HexDump::XXD - format hexadecimal dump like B<xxd> -- 1.8.1.4
On Sat Jul 20 10:53:23 2013, ppisar wrote: Show quoted text
> Dne So 20.čec.2013 10:46:29, ppisar napsal(a):
> > POD tests on Perl 5.18 that has stricter POD processing fails: > >
> Fix is attached.
Thanks for pointing out. I made POD tests author-only, by the way. Unfortunately I didn't see this bug report and I haven't acknowledged your contribution in Changes. Ciao, Flavio.