From: jake%acutex.net <> Date: Sun, 1 Mar 2009 04:03:09 +0000 (+0000) Subject: Don't rely on the TEST_VERBOSE environment variable (no longer exported from runtests... X-Git-Tag: bugzilla-3.3.4~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=743c714d0a0e5cadf450dcbf027139db30bbef03;p=thirdparty%2Fbugzilla.git 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. --- diff --git a/t/005whitespace.t b/t/005whitespace.t index 66b2af5d61..e420baaaaa 100644 --- a/t/005whitespace.t +++ b/t/005whitespace.t @@ -32,7 +32,6 @@ BEGIN { use Test::More tests => $tests; } use strict; my @testitems = @Support::Files::testitems; -my $verbose = $::ENV{TEST_VERBOSE}; foreach my $file (@testitems) { open (FILE, "$file");