Skip Menu |

This queue is for tickets about the Mail-Transport-Dbx CPAN distribution.

Report information
The Basics
Id: 106599
Status: open
Priority: 0/
Queue: Mail-Transport-Dbx

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 V/VP/VPARSEVAL/Mail-Transport-Dbx-0.07.tar.gz with Makefile.PL Checking if your kit is complete... Looks good Generating a Unix-style Makefile Writing Makefile for Mail::Transport::Dbx::libdbx Writing MYMETA.yml and MYMETA.json Generating a Unix-style Makefile Writing Makefile for Mail::Transport::Dbx Writing MYMETA.yml and MYMETA.json VPARSEVAL/Mail-Transport-Dbx-0.07.tar.gz /usr/local/perl-forge/v/5.22.0/bin/perl Makefile.PL -- OK Running make for V/VP/VPARSEVAL/Mail-Transport-Dbx-0.07.tar.gz ... 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 # Failed test 'POD test for blib/lib/Mail/Transport/Dbx.pm' # at /usr/local/perl-forge/v/5.22.0/site/lib/Test/Pod.pm line 187. # blib/lib/Mail/Transport/Dbx.pm (450): Non-ASCII character seen before =encoding in 'Ordner/Entw<FC>rfe'. Assuming CP1252 # Looks like you failed 1 test of 1. t/0_pod.t ........... Dubious, test returned 1 (wstat 256, 0x100) Failed 1/1 subtests t/0_pod_coverage.t .. ok t/1.t ............... ok t/2.t ............... ok t/3.t ............... ok t/fixed.t ........... ok Test Summary Report ------------------- t/0_pod.t (Wstat: 256 Tests: 1 Failed: 1) Failed test: 1 Non-zero exit status: 1 Files=6, Tests=60, 0 wallclock secs ( 0.06 usr 0.02 sys + 0.34 cusr 0.04 csys = 0.46 CPU) Result: FAIL Failed 1/6 test programs. 1/60 subtests failed. make: *** [test_dynamic] Error 255 VPARSEVAL/Mail-Transport-Dbx-0.07.tar.gz /usr/bin/make test -- NOT OK
On 2015-08-21 08:46:59, JHI wrote: Show quoted text
> ... > Configuring V/VP/VPARSEVAL/Mail-Transport-Dbx-0.07.tar.gz with > Makefile.PL > Checking if your kit is complete... > Looks good > Generating a Unix-style Makefile > Writing Makefile for Mail::Transport::Dbx::libdbx > Writing MYMETA.yml and MYMETA.json > Generating a Unix-style Makefile > Writing Makefile for Mail::Transport::Dbx > Writing MYMETA.yml and MYMETA.json > VPARSEVAL/Mail-Transport-Dbx-0.07.tar.gz > /usr/local/perl-forge/v/5.22.0/bin/perl Makefile.PL -- OK > Running make for V/VP/VPARSEVAL/Mail-Transport-Dbx-0.07.tar.gz > ... > 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 > > # Failed test 'POD test for blib/lib/Mail/Transport/Dbx.pm' > # at /usr/local/perl-forge/v/5.22.0/site/lib/Test/Pod.pm line 187. > # blib/lib/Mail/Transport/Dbx.pm (450): Non-ASCII character seen > before =encoding in 'Ordner/Entw<FC>rfe'. Assuming CP1252 > # Looks like you failed 1 test of 1. > t/0_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.)