Skip Menu |

This queue is for tickets about the Test-Harness CPAN distribution.

Report information
The Basics
Id: 4960
Status: resolved
Priority: 0/
Queue: Test-Harness

People
Owner: Nobody in particular
Requestors: david [...] kineticode.com
Cc:
AdminCc:

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



To: Andy Lester <andy [...] petdance.com>
From: David Wheeler <david [...] kineticode.com>
Subject: prove -v
Date: Fri, 16 Jan 2004 10:56:08 -0800
Hi Andy, Just a note to point out that prove -v doesn't set the TEST_VERBOSE environment variable. Most of the time this is okay, because Test::Harness has its $Test::Harness::verbose variable. However, other modules may check for the environment variable. A good example is Test::Class. You want a patch to prove to set it? Or should Test::Harness just set it if $Test::Harness::verbose is true? Thanks, David
From: David Wheeler <david [...] kineticode.com>
Subject: Re: [cpan #4960] AutoReply: prove -v
Date: Fri, 16 Jan 2004 13:24:02 -0800
To: bug-Test-Harness [...] rt.cpan.org
RT-Send-Cc:
How 'bout this? --- bin/prove.old Fri Jan 16 13:22:45 2004 +++ bin/prove Fri Jan 16 13:23:18 2004 @@ -45,6 +45,8 @@ 'ext=s@' => \@ext, ) or exit 1; +$ENV{TEST_VERBOSE} = 1 if $Test::Harness::verbose; + # Build up extensions regex @ext = map { split /,/ } @ext; s/^\.// foreach @ext;
Added in 2.42.