Skip Menu |

This queue is for tickets about the HTML-TableTiler CPAN distribution.

Report information
The Basics
Id: 106583
Status: open
Priority: 0/
Queue: HTML-TableTiler

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

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



Subject: test failures with 5.22.0
... Configuring D/DO/DOMIZIO/HTML-TableTiler-1.21.tar.gz with Makefile.PL Checking if your kit is complete... Looks good Generating a Unix-style Makefile Writing Makefile for HTML::TableTiler Writing MYMETA.yml and MYMETA.json DOMIZIO/HTML-TableTiler-1.21.tar.gz /usr/local/perl-forge/v/5.22.0/bin/perl Makefile.PL -- OK Running make for D/DO/DOMIZIO/HTML-TableTiler-1.21.tar.gz CPAN: Module::CoreList loaded ok (v5.20150520) cp lib/HTML/TableTiler.pm blib/lib/HTML/TableTiler.pm Manifying 1 pod document DOMIZIO/HTML-TableTiler-1.21.tar.gz /usr/bin/make -- OK Running make test PERL_DL_NONLAZY=1 "/usr/local/perl-forge/v/5.22.0/bin/perl" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/01_default_tile.t ........ ok t/02_custom_tile.t ......... ok t/03_custom_modes.t ........ ok t/04_function_interface.t .. ok Can't stat ../lib: No such file or directory at /usr/local/perl-forge/v/5.22.0/site/lib/Test/Pod.pm line 225. # Failed test 'POD test for blib/lib/HTML/TableTiler.pm' # at /usr/local/perl-forge/v/5.22.0/site/lib/Test/Pod.pm line 187. # blib/lib/HTML/TableTiler.pm (833): Non-ASCII character seen before =encoding in '<A9>'. Assuming CP1252 # Looks like you failed 1 test of 1. t/test_pod.t ............... Dubious, test returned 1 (wstat 256, 0x100) Failed 1/1 subtests t/test_pod_coverage.t ...... ok Test Summary Report ------------------- t/test_pod.t (Wstat: 256 Tests: 1 Failed: 1) Failed test: 1 Non-zero exit status: 1 Files=6, Tests=6, 1 wallclock secs ( 0.05 usr 0.02 sys + 0.44 cusr 0.04 csys = 0.55 CPU) Result: FAIL Failed 1/6 test programs. 1/6 subtests failed. make: *** [test_dynamic] Error 255 DOMIZIO/HTML-TableTiler-1.21.tar.gz /usr/bin/make test -- NOT OK
On 2015-08-21 07:39:38, JHI wrote: Show quoted text
> ... > Configuring D/DO/DOMIZIO/HTML-TableTiler-1.21.tar.gz with Makefile.PL > Checking if your kit is complete... > Looks good > Generating a Unix-style Makefile > Writing Makefile for HTML::TableTiler > Writing MYMETA.yml and MYMETA.json > DOMIZIO/HTML-TableTiler-1.21.tar.gz > /usr/local/perl-forge/v/5.22.0/bin/perl Makefile.PL -- OK > Running make for D/DO/DOMIZIO/HTML-TableTiler-1.21.tar.gz > CPAN: Module::CoreList loaded ok (v5.20150520) > cp lib/HTML/TableTiler.pm blib/lib/HTML/TableTiler.pm > Manifying 1 pod document > DOMIZIO/HTML-TableTiler-1.21.tar.gz > /usr/bin/make -- OK > Running make test > PERL_DL_NONLAZY=1 "/usr/local/perl-forge/v/5.22.0/bin/perl" "- > MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef > *Test::Harness::Switches; test_harness(0, 'blib/lib', 'blib/arch')" > t/*.t > t/01_default_tile.t ........ ok > t/02_custom_tile.t ......... ok > t/03_custom_modes.t ........ ok > t/04_function_interface.t .. ok > Can't stat ../lib: No such file or directory > at /usr/local/perl-forge/v/5.22.0/site/lib/Test/Pod.pm line 225. > > # Failed test 'POD test for blib/lib/HTML/TableTiler.pm' > # at /usr/local/perl-forge/v/5.22.0/site/lib/Test/Pod.pm line 187. > # blib/lib/HTML/TableTiler.pm (833): Non-ASCII character seen before > =encoding in '<A9>'. Assuming CP1252 > # Looks like you failed 1 test of 1. > t/test_pod.t ............... > Dubious, test returned 1 (wstat 256, 0x100) > Failed 1/1 subtests
Please don't allow pod tests to run for normal user installs. Either move them to xt/, or guard them with: plan skip_all => 'these tests are for authors only!' unless $ENV{AUTHOR_TESTING} or $ENV{RELEASE_TESTING}; (regarding this specific error, you need an '=encoding' directive in pod.)