diff options
author | Perl 5 Porters <perl5-porters.nicoh.com> | 1996-01-09 02:35:51 +0000 |
---|---|---|
committer | Andy Dougherty <doughera.lafayette.edu> | 1996-01-09 02:35:51 +0000 |
commit | 2af9ad4a904b5dc5ce052f7b4ec3732ac53e73ab (patch) | |
tree | f3050bb36871455230bbb3b7b85dc8a1f18dce26 /t | |
parent | fe983fe5a432b4ae3492a7da564f07983f013e26 (diff) | |
download | perl-2af9ad4a904b5dc5ce052f7b4ec3732ac53e73ab.tar.gz |
Not having Socket shouldn't result in test failing TEST harness.
Diffstat (limited to 't')
-rw-r--r-- | t/lib/socket.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/lib/socket.t b/t/lib/socket.t index 7aec86a045..e63c43ae4c 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; } } |