In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/4b074b7191cf70ddeff23e80e0d7a236842ebd1a?hp=a983b67a695e2cb334b10a966f2d8bc70d044303>

- Log -----------------------------------------------------------------
commit 4b074b7191cf70ddeff23e80e0d7a236842ebd1a
Author: Craig A. Berry <craigbe...@mac.com>
Date:   Fri Nov 26 18:45:24 2010 -0600

    Skip multi-arg piped open in autodie test on VMS.
    
    Awaiting upstream integration at:
    
    https://rt.cpan.org/Ticket/Display.html?id=59123
-----------------------------------------------------------------------

Summary of changes:
 cpan/autodie/t/open.t |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/cpan/autodie/t/open.t b/cpan/autodie/t/open.t
index 359eb9a..67f6f0c 100644
--- a/cpan/autodie/t/open.t
+++ b/cpan/autodie/t/open.t
@@ -56,7 +56,7 @@ unlike($@, qr/at \S+ line \d+\s+at \S+ line \d+/, "...but not 
too mentions");
 eval {
     use autodie;
 
-    die "Windows does not support multi-arg pipe" if $^O eq "MSWin32";
+    die "Windows and VMS do not support multi-arg pipe" if $^O eq "MSWin32" or 
$^O eq 'VMS';
 
     open(my $fh, '-|', "true");
 };

--
Perl5 Master Repository

Reply via email to