From: Jarkko Hietaniemi Date: Tue, 26 Jun 2001 13:28:27 +0000 (+0000) Subject: Escape multiline croak messages. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e14f2162147f3d6538376ec4348c4ead50ca2bae;p=p5sagit%2Fp5-mst-13.2.git Escape multiline croak messages. p4raw-id: //depot/perl@10958 --- diff --git a/t/op/ver.t b/t/op/ver.t index 18d101a..1aed539 100755 --- a/t/op/ver.t +++ b/t/op/ver.t @@ -206,6 +206,7 @@ eval { require Socket; gethostbyaddr(v127.0.0.1, Socket::AF_INET) }; if ($@) { # No - so don't test insane fails. + $@ =~ s/\n/\n# /g; skip("No Socket::AF_INET # $@"); } else