From b49fc163d0d3e37775be321435b6ac31e4188097 Mon Sep 17 00:00:00 2001 From: "Craig A. Berry" Date: Fri, 15 Apr 2011 16:20:48 -0500 Subject: [PATCH] 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. --- ext/IPC-Open3/t/fd.t | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/IPC-Open3/t/fd.t b/ext/IPC-Open3/t/fd.t index ecb677d..7d4295e 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; -- 2.7.4