From: chromatic Date: Mon, 17 Sep 2001 00:22:29 +0000 (-0600) Subject: Re: t/op/ver.t using skip() improperly X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=58d344df650fc2c90c32381f9e9363069a38509d;p=p5sagit%2Fp5-mst-13.2.git Re: t/op/ver.t using skip() improperly Message-ID: <20010917062713.47716.qmail@onion.perl.org> p4raw-id: //depot/perl@12046 --- diff --git a/t/op/ver.t b/t/op/ver.t index 4ccc84c..f64cf47 100755 --- a/t/op/ver.t +++ b/t/op/ver.t @@ -185,9 +185,9 @@ eval { require Socket; gethostbyaddr(v127.0.0.1, Socket::AF_INET) }; if ($@) { # No - so do not test insane fails. $@ =~ s/\n/\n# /g; - skip("No Socket::AF_INET # $@"); } -else { +SKIP: { + skip("No Socket::AF_INET # $@") if $@; my $ip = v2004.148.0.1; my $host; eval { $host = gethostbyaddr($ip,Socket::AF_INET) };