In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/83044e8d6994c2685694a9cd098bc541fcaae5aa?hp=7eb35c035978bf0530591a57244b6922682a3344>
- Log ----------------------------------------------------------------- commit 83044e8d6994c2685694a9cd098bc541fcaae5aa Author: Chris 'BinGOs' Williams <[email protected]> Date: Wed Jan 16 08:21:49 2013 +0000 Update Test-Harness to CPAN version 3.26 [DELTA] 3.26 2013-01-16 - Renamed env.opts.t to env_opts.t (for VMS) - Skipped some TAP::Formatter::HTML tests due to this bug: #82738 ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 2 +- cpan/Test-Harness/Changes | 6 +++++- cpan/Test-Harness/MANIFEST | 2 +- cpan/Test-Harness/t/compat/env_opts.t | 7 ++----- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 350b924..2d0f8fa 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1734,7 +1734,7 @@ use File::Glob qw(:case); 'Test::Harness' => { 'MAINTAINER' => 'andya', - 'DISTRIBUTION' => 'OVID/Test-Harness-3.25.tar.gz', + 'DISTRIBUTION' => 'OVID/Test-Harness-3.26.tar.gz', 'FILES' => q[cpan/Test-Harness], 'EXCLUDED' => [ qr{^examples/}, diff --git a/cpan/Test-Harness/Changes b/cpan/Test-Harness/Changes index 98629aa..88039e5 100644 --- a/cpan/Test-Harness/Changes +++ b/cpan/Test-Harness/Changes @@ -1,6 +1,10 @@ Revision history for Test-Harness -3.25 2012-06-05 +3.26 2013-01-16 + - Renamed env.opts.t to env_opts.t (for VMS) + - Skipped some TAP::Formatter::HTML tests due to this bug: #82738 + +3.26 2012-06-05 - Rereleased to fix CPAN permission problem. No functional change. 3.24 2012-06-03 diff --git a/cpan/Test-Harness/MANIFEST b/cpan/Test-Harness/MANIFEST index 63b696b..93e9ac8 100644 --- a/cpan/Test-Harness/MANIFEST +++ b/cpan/Test-Harness/MANIFEST @@ -76,7 +76,7 @@ t/aggregator.t t/bailout.t t/base.t t/callbacks.t -t/compat/env.opts.t +t/compat/env_opts.t t/compat/env.t t/compat/failure.t t/compat/inc-propagation.t diff --git a/cpan/Test-Harness/t/compat/env_opts.t b/cpan/Test-Harness/t/compat/env_opts.t index c28f4c2..62770db 100644 --- a/cpan/Test-Harness/t/compat/env_opts.t +++ b/cpan/Test-Harness/t/compat/env_opts.t @@ -1,11 +1,7 @@ #!/usr/bin/perl -w use strict; -use Test::More ( - $^O eq 'VMS' - ? ( skip_all => 'VMS' ) - : ( tests => 12 ) -); +use Test::More tests => 12; use Test::Harness; @@ -25,6 +21,7 @@ sub _has_module { is( $harness->jobs, 4, "set jobs correctly" ); } SKIP: { + skip 'Can\'t locate object method "color" via package "TAP::Formatter::HTML" (RT 82738)',4; skip "requires TAP::Formatter::HTML", 4 unless _has_module('TAP::Formatter::HTML'); -- Perl5 Master Repository
