From: Steve Peters Date: Wed, 2 Nov 2005 22:37:48 +0000 (+0000) Subject: Test case should not execute /no_such_process if it does exist. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=38efdb82c659a45925093d890b9a6cb896cb9c47;p=p5sagit%2Fp5-mst-13.2.git Test case should not execute /no_such_process if it does exist. p4raw-id: //depot/perl@25965 --- diff --git a/t/io/pipe.t b/t/io/pipe.t index c32f3b1..fd35512 100755 --- a/t/io/pipe.t +++ b/t/io/pipe.t @@ -182,7 +182,8 @@ is($?, 42, 'status unaffected by implicit close'); $? = 0; # check that child is reaped if the piped program can't be executed -{ +SKIP: { + skip "/no_such_process exists", 1 if -e "/no_such_process"; open NIL, '/no_such_process |'; close NIL;