From: Perl 5 Porters Date: Tue, 9 Jan 1996 02:33:14 +0000 (+0000) Subject: Not having POSIX shouldn't result in test failing TEST harness. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c764b42b39aeaa1d50d18e4afb4455d908265700;p=p5sagit%2Fp5-mst-13.2.git Not having POSIX shouldn't result in test failing TEST harness. --- diff --git a/t/lib/posix.t b/t/lib/posix.t index 8d54df5..06e209c 100755 --- a/t/lib/posix.t +++ b/t/lib/posix.t @@ -5,7 +5,7 @@ BEGIN { @INC = '../lib'; require Config; import Config; if ($Config{'extensions'} !~ /\bPOSIX\b/) { - print STDERR "1..0\n"; + print "1..0\n"; exit 0; } }