Skip Menu |

This queue is for tickets about the B-Utils CPAN distribution.

Report information
The Basics
Id: 100508
Status: resolved
Priority: 0/
Queue: B-Utils

People
Owner: Nobody in particular
Requestors: 'spro^^*%*^6ut# [...] &$%*c
Cc: ether [...] cpan.org
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: 0.26



Subject: [PATCH] Fix test for 5.21.7-to-be
v5.21.6-13-g619dadb made nulled COPs to be of class B::COP, which makes 40walk.t fail. See the attached patch.
Subject: open_gmdd6aYt.txt
diff -rup B-Utils-0.25-K2jkIx-orig/t/utils/40walk.t B-Utils-0.25-K2jkIx/t/utils/40walk.t --- B-Utils-0.25-K2jkIx-orig/t/utils/40walk.t 2014-11-22 17:16:24.000000000 -0800 +++ B-Utils-0.25-K2jkIx/t/utils/40walk.t 2014-11-22 17:16:34.000000000 -0800 @@ -10,7 +10,7 @@ my $callback = sub { my $op = shift; if ('COP' eq B::class($op) and $op->file eq __FILE__) { - push @lines, $op->line; + push @lines, $op->line unless $op->name eq 'null'; } };
On 2014-11-22 20:18:49, SPROUT wrote: Show quoted text
> v5.21.6-13-g619dadb made nulled COPs to be of class B::COP, which > makes 40walk.t fail. See the attached patch.
The patch is still relevant with perl 5.21.10.
On 2015-03-20 16:20:52, SREZIC wrote: Show quoted text
> On 2014-11-22 20:18:49, SPROUT wrote:
> > v5.21.6-13-g619dadb made nulled COPs to be of class B::COP, which > > makes 40walk.t fail. See the attached patch.
> > The patch is still relevant with perl 5.21.10.
And with perl 5.21.11. Just one month until the next stable perl release!
I'd be happy to apply/ship the patch if someone wanted to give me comaint.
On 20150421T171528Z, ETHER wrote: Show quoted text
> I'd be happy to apply/ship the patch if someone wanted to give me comaint.
I think, given there is a 5.22 expected in ~4 weeks, this deserves no longer waiting, so as a CPAN admin, I just Show quoted text
>>Added ETHER to co-maintainers of B::Utils.<<
Thanks, Karen,
0.26 has been uploaded with the patch.