X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/2d4a14fe014e68c025e5bc1de990575528c46d6f..ed272d6f374576ac4cb7c9ae72b0f522ccc5516e:/ext/IO/t/io_multihomed.t diff --git a/ext/IO/t/io_multihomed.t b/ext/IO/t/io_multihomed.t index 3560d7b..ec1cb2b 100644 --- a/ext/IO/t/io_multihomed.t +++ b/ext/IO/t/io_multihomed.t @@ -5,11 +5,10 @@ BEGIN { chdir 't' if -d 't'; @INC = '../lib'; } -} -use Config; + require($ENV{PERL_CORE} ? './test.pl' : './t/test.pl'); -BEGIN { + use Config; my $can_fork = $Config{d_fork} || (($^O eq 'MSWin32' || $^O eq 'NetWare') and $Config{useithreads} and @@ -25,20 +24,13 @@ BEGIN { elsif (!$can_fork) { $reason = 'no fork'; } - if ($reason) { - print "1..0 # Skip: $reason\n"; - exit 0; - } + skip_all($reason) if $reason; } $| = 1; print "1..8\n"; - -eval { - $SIG{ALRM} = sub { die; }; - alarm 60; -}; +watchdog(15); package Multi; require IO::Socket::INET;