From 58d344df650fc2c90c32381f9e9363069a38509d Mon Sep 17 00:00:00 2001 From: chromatic Date: Sun, 16 Sep 2001 18:22:29 -0600 Subject: [PATCH] Re: t/op/ver.t using skip() improperly Message-ID: <20010917062713.47716.qmail@onion.perl.org> p4raw-id: //depot/perl@12046 --- t/op/ver.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) }; -- 2.7.4