diff options
author | Craig A. Berry <craigberry@mac.com> | 2011-04-15 16:20:48 -0500 |
---|---|---|
committer | Craig A. Berry <craigberry@mac.com> | 2011-04-15 16:20:48 -0500 |
commit | b49fc163d0d3e37775be321435b6ac31e4188097 (patch) | |
tree | 344992a3fa038cdcf984213cbe0d025bbc65b0a4 /ext/IPC-Open3 | |
parent | d4e61d91175f056c71693f8f47149472d0f4c18d (diff) | |
download | perl-b49fc163d0d3e37775be321435b6ac31e4188097.tar.gz |
IPC::Open3 needs porting to work on VMS.
So skip the test for now. Something like the Win32 mechanism
spawn_with_handles() may be workable but needs investigation.
Diffstat (limited to 'ext/IPC-Open3')
-rw-r--r-- | ext/IPC-Open3/t/fd.t | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/IPC-Open3/t/fd.t b/ext/IPC-Open3/t/fd.t index ecb677d5c2..7d4295ef3e 100644 --- a/ext/IPC-Open3/t/fd.t +++ b/ext/IPC-Open3/t/fd.t @@ -5,6 +5,10 @@ BEGIN { print "1..0 # Skip: not perlio\n"; exit 0; } + if ($^O eq 'VMS') { + print "1..0 # Skip: needs porting, perhaps imitating Win32 mechanisms\n"; + exit 0; + } require "../../t/test.pl"; } use strict; |