From: Yitzchak Scott-Thoennes Date: Mon, 9 Jan 2006 06:38:25 +0000 (-0800) Subject: Re: relaxing TEST restrictions (was: Re: 5.9.3 approaches) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dbf51d072f3a6cc24fb165e2f676abaf7526375d;p=p5sagit%2Fp5-mst-13.2.git Re: relaxing TEST restrictions (was: Re: 5.9.3 approaches) Message-ID: <20060109143825.GB4132@efn.org> p4raw-id: //depot/perl@26757 --- diff --git a/t/TEST b/t/TEST index 59c8fa5..9cb6652 100755 --- a/t/TEST +++ b/t/TEST @@ -481,6 +481,9 @@ EOT die "FAILED--Further testing stopped" . ($1 ? ": $1\n" : ".\n"); } else { + # module tests are allowed extra output, + # because Test::Harness allows it + next if $test =~ /^\W*(ext|lib)\b/; $failure = "FAILED--unexpected output at test $next"; last; }