summaryrefslogtreecommitdiff
path: root/t/harness
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2008-01-05 20:25:52 +0000
committerYves Orton <demerphq@gmail.com>2008-01-05 20:25:52 +0000
commit9d6c4c89d7abc4ff8da33eead5dcb715c685a2e8 (patch)
treeb6884b70fcc7bea1d1e2a08459bfcdc9af8722e6 /t/harness
parenta6307b373ec9532e004e407dc524430798c14362 (diff)
downloadperl-9d6c4c89d7abc4ff8da33eead5dcb715c685a2e8.tar.gz
$Test::Harness::Verbose is a numeric value now so assigning -v to it isnt all that helpful.
p4raw-id: //depot/perl@32856
Diffstat (limited to 't/harness')
-rw-r--r--t/harness2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/harness b/t/harness
index e7c1e88271..d5b2924a63 100644
--- a/t/harness
+++ b/t/harness
@@ -14,7 +14,7 @@ my $torture; # torture testing?
use Test::Harness;
$Test::Harness::switches = ""; # Too much noise otherwise
-$Test::Harness::verbose = shift if @ARGV && $ARGV[0] eq '-v';
+$Test::Harness::Verbose++ while @ARGV && $ARGV[0] eq '-v' && shift;
if ($ARGV[0] && $ARGV[0] eq '-torture') {
shift;