Skip Menu |

This queue is for tickets about the autodie CPAN distribution.

Report information
The Basics
Id: 59123
Status: resolved
Priority: 0/
Queue: autodie

People
Owner: Nobody in particular
Requestors: cberry [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 2.10
Fixed in: 2.11



Subject: [PATCH] skip multi-arg piped open on VMS as well
When 2.10 came into blead, the following test started failing. The attached patch fixes it. not ok 13 - multi arg piped open does not fail # Failed test 'multi arg piped open does not fail' # at [.t]open.t line 77. # got: 'List form of piped open not implemented at (eval 22) line 109. # ' # expected: '' 1..13 # Looks like you failed 1 test of 13.
Subject: autodie_open.patch
--- t/open.t;-0 2010-06-27 10:54:10 -0500 +++ t/open.t 2010-07-05 14:36:18 -0500 @@ -56,7 +56,7 @@ unlike($@, qr/at \S+ line \d+\s+at \S+ l 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"); };
Subject: Re: [rt.cpan.org #59123] [PATCH] skip multi-arg piped open on VMS as well
Date: Tue, 06 Jul 2010 14:37:53 -0400
To: bug-autodie [...] rt.cpan.org
From: Paul Fenwick <pjf [...] perltraining.com.au>
G'day Craig, Craig A. Berry via RT wrote: Show quoted text
> When 2.10 came into blead, the following test started failing. The attached patch fixes it.
Thank you very much! Applied upstream with thanks! Paul -- Paul Fenwick <pjf@perltraining.com.au> | http://perltraining.com.au/ Director of Training | Ph: +61 3 9354 6001 Perl Training Australia | Fax: +61 3 9354 2681
autodie is marked 'cpan' upstream in blead, but has not had a release to fix this issue, so blead has patched it locally. Could we please get a new autodie released to CPAN or could we please change autodie to 'blead' as upstream? Thank you, David
Still needed for blead sync
Hi, The patch was merged into v2.11 AFAICT, so marking this ticket as resolved with v2.11 as fixed version. ~Niels