IPC::Open3 needs porting to work on VMS.
authorCraig A. Berry <craigberry@mac.com>
Fri, 15 Apr 2011 21:20:48 +0000 (16:20 -0500)
committerCraig A. Berry <craigberry@mac.com>
Fri, 15 Apr 2011 21:20:48 +0000 (16:20 -0500)
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

index ecb677d..7d4295e 100644 (file)
@@ -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;