Change 34042 by [EMAIL PROTECTED] on 2008/06/11 17:40:25
Subject: [EMAIL PROTECTED] VMS passes these t/io/open.t tests now.
From: "John E. Malmberg" <[EMAIL PROTECTED]>
Message-id: <[EMAIL PROTECTED]>
Date: Tue, 10 Jun 2008 23:17:46 -0500
Affected files ...
... //depot/perl/t/io/open.t#43 edit
Differences ...
==== //depot/perl/t/io/open.t#43 (xtext) ====
Index: perl/t/io/open.t
--- perl/t/io/open.t#42~25139~ 2005-07-13 09:52:48.000000000 -0700
+++ perl/t/io/open.t 2008-06-11 10:40:25.000000000 -0700
@@ -9,7 +9,6 @@
$| = 1;
use warnings;
use Config;
-$Is_VMS = $^O eq 'VMS';
$Is_MacOS = $^O eq 'MacOS';
plan tests => 108;
@@ -75,10 +74,7 @@
unlink("afile");
}
-
-SKIP: {
- skip "open -| busted and noisy on VMS", 3 if $Is_VMS;
-
+{
ok( open(my $f, '-|', <<EOC), 'open -|' );
$Perl -e "print qq(a row\\n); print qq(another row\\n)"
EOC
@@ -87,7 +83,6 @@
is( scalar @rows, 2, ' readline, list context' );
ok( close($f), ' close' );
}
-
SKIP: {
skip "Output for |- doesn't go to shell on MacOS", 5 if $Is_MacOS;
@@ -171,9 +166,7 @@
unlink("afile");
}
-SKIP: {
- skip "open -| busted and noisy on VMS", 3 if $Is_VMS;
-
+{
ok( open(local $f, '-|', <<EOC), 'open local $f, "-|", ...' );
$Perl -e "print qq(a row\\n); print qq(another row\\n)"
EOC
End of Patch.