Skip Menu |

This queue is for tickets about the ExtUtils-MakeMaker CPAN distribution.

Report information
The Basics
Id: 423
Status: resolved
Priority: 0/
Queue: ExtUtils-MakeMaker

People
Owner: Nobody in particular
Requestors: ken [...] mathforum.org
Cc:
AdminCc:

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



Subject: TEST_VERBOSE not working in 5.52_01?
Check this out: ===================================================================== [junior:ExtUtils-MakeMaker-5.52_01] ken% make test TEST_VERBOSE=1 PERL_DL_NONLAZY=1 /usr/bin/perl "-I/Users/ken/Downloads/perl/ExtUtils-MakeMaker-5.52_01/lib" "-MExtUtils::testlib" "-MExtUtils::Command::MM" "-e" "test_harness(1)" t/*.t t/Command...........ok t/Installed.........ok t/MM_BeOS...........skipped: This is not BeOS t/MM_Cygwin.........skipped: This is not cygwin t/MM_OS2............skipped: This is not OS/2 t/MM_Unix...........ok t/MM_VMS............skipped: This is not VMS t/MM_Win32..........skipped: This is not Win32 t/Manifest..........ok 16/31Not in MANIFEST: bar t/Manifest..........ok t/Mkbootstrap.......ok t/Packlist..........ok t/basic.............ok t/hints.............ok t/testlib...........ok All tests successful, 5 tests skipped. Files=14, Tests=272, 39 wallclock secs (11.30 cusr + 3.96 csys = 15.26 CPU) ===================================================================== Not very verbose, is it? Did this get damaged sometime?
Date: Thu, 28 Mar 2002 13:11:39 -0500
From: schwern [...] pobox.com
To: Ken_Williams via RT <bug-ExtUtils-MakeMaker [...] rt.cpan.org>
Subject: Re: [cpan #423] TEST_VERBOSE not working in 5.52_01?
On Thu, Mar 28, 2002 at 02:50:52AM -0500, Ken_Williams via RT wrote: Show quoted text
> Not very verbose, is it? Did this get damaged sometime?
Yeah, my new ExtUtils::Command::MM wrapper screwed up the hand-off. I'll commit this tonite, I don't have CVS access from here. --- lib/ExtUtils/Command/MM.pm 13 Feb 2002 07:53:54 -0000 1.1 +++ lib/ExtUtils/Command/MM.pm 28 Mar 2002 18:05:56 -0000 @@ -44,10 +44,8 @@ =cut sub test_harness { - my($verbose) = shift; - require Test::Harness; - $Test::Harness::Verbose = $verbose; + $Test::Harness::verbose = shift; Test::Harness::runtests(@ARGV); } -- Michael G Schwern <schwern@pobox.com> http://www.pobox.com/~schwern/ Perl6 Quality Assurance <perl-qa@perl.org> Kwalitee Is Job One
Patched and tested. The 5.52_01 code works with a Test::Harness newer than the one in 5.6.1. My "clean" 5.6.1 was accidentally contaminated with a newer Test::Harness, so I was getting a false positive.