Craig A. Berry [Mon, 10 Dec 2001 16:38:14 +0000 (10:38 -0600)]
Message-Id: <5.1.0.14.2.
20011210154846.01aef188@exchi01>
p4raw-id: //depot/perl@13603
$stdout->fdopen($dupout,"w");
$stderr->fdopen($duperr,"w");
-if ($^O eq 'MSWin32' || $^O eq 'NetWare') { print `type Io.dup` }
+if ($^O eq 'MSWin32' || $^O eq 'NetWare' || $^O eq 'VMS') { print `type Io.dup` }
else { system 'cat Io.dup' }
unlink 'Io.dup';
if ($count == 7) {print "ok 3\n";} else {print "not ok 3\n";}
-$_ = (($^O eq 'MSWin32') || $^O eq 'NetWare') ? `type Comp.try`
+$_ = (($^O eq 'MSWin32') || $^O eq 'NetWare' || $^O eq 'VMS') ? `type Comp.try`
: ($^O eq 'MacOS') ? `catenate Comp.try`
: `cat Comp.try`;
open(STDOUT,">&DUPOUT");
open(STDERR,">&DUPERR");
-if (($^O eq 'MSWin32') || ($^O eq 'NetWare')) { print `type Io.dup` }
+if (($^O eq 'MSWin32') || ($^O eq 'NetWare') || ($^O eq 'VMS')) { print `type Io.dup` }
else { system 'cat Io.dup' }
unlink 'Io.dup';