diff options
author | Father Chrysostomos <sprout@cpan.org> | 2010-09-27 06:47:43 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-09-27 06:47:43 -0700 |
commit | 0c24d2685a66bebbc5dc94a26dbeecb1aed3265b (patch) | |
tree | 199d2e6b85b8434d58c1078c649180e44b26e103 /ext/IPC-Open3 | |
parent | 2ffefa5a34345a0b799ca4de804636808273b9b2 (diff) | |
download | perl-0c24d2685a66bebbc5dc94a26dbeecb1aed3265b.tar.gz |
Skip ext/IPC-Open3/t/fd.t on stdio
Diffstat (limited to 'ext/IPC-Open3')
-rw-r--r-- | ext/IPC-Open3/t/fd.t | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/IPC-Open3/t/fd.t b/ext/IPC-Open3/t/fd.t index 2a9aeffa9d..d7160604f8 100644 --- a/ext/IPC-Open3/t/fd.t +++ b/ext/IPC-Open3/t/fd.t @@ -1,6 +1,12 @@ #!./perl -BEGIN { require "../../t/test.pl"; } +BEGIN { + if (!PerlIO::Layer->find('perlio') || $ENV{PERLIO} eq 'stdio') { + print "1..0 # Skip: not perlio\n"; + exit 0; + } + require "../../t/test.pl"; +} use strict; use warnings; |