Commit 743c714d authored by jake%acutex.net's avatar jake%acutex.net

Don't rely on the TEST_VERBOSE environment variable (no longer exported from…

Don't rely on the TEST_VERBOSE environment variable (no longer exported from runtests.sh) and instead print to the TESTOUT file handle pulled in from Test::More. This will allow the testing backend to check for verbosity rather than having to handle it in the .t files.
parent 95afe724
...@@ -32,7 +32,6 @@ BEGIN { use Test::More tests => $tests; } ...@@ -32,7 +32,6 @@ BEGIN { use Test::More tests => $tests; }
use strict; use strict;
my @testitems = @Support::Files::testitems; my @testitems = @Support::Files::testitems;
my $verbose = $::ENV{TEST_VERBOSE};
foreach my $file (@testitems) { foreach my $file (@testitems) {
open (FILE, "$file"); open (FILE, "$file");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment