From: Perl 5 Porters Date: Tue, 9 Jan 1996 02:35:51 +0000 (+0000) Subject: Not having Socket shouldn't result in test failing TEST harness. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2af9ad4a904b5dc5ce052f7b4ec3732ac53e73ab;p=p5sagit%2Fp5-mst-13.2.git Not having Socket shouldn't result in test failing TEST harness. --- diff --git a/t/lib/socket.t b/t/lib/socket.t index 7aec86a..e63c43a 100644 --- a/t/lib/socket.t +++ b/t/lib/socket.t @@ -5,7 +5,7 @@ BEGIN { @INC = '../lib' if -d '../lib'; require Config; import Config; if ($Config{'extensions'} !~ /\bSocket\b/ && $Config{'osname'} ne 'VMS') { - print STDERR "1..0\n"; + print "1..0\n"; exit 0; } }