diff options
Diffstat (limited to 't/io/pipe.t')
-rwxr-xr-x | t/io/pipe.t | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/t/io/pipe.t b/t/io/pipe.t index 95df4dccb6..d70b2ab258 100755 --- a/t/io/pipe.t +++ b/t/io/pipe.t @@ -2,6 +2,16 @@ # $RCSfile: pipe.t,v $$Revision: 4.1 $$Date: 92/08/07 18:27:31 $ +BEGIN { + chdir 't' if -d 't'; + @INC = '../lib'; + require Config; import Config; + unless ($Config{'d_fork'}) { + print "1..0\n"; + exit 0; + } +} + $| = 1; print "1..8\n"; |