Skip Menu |

This queue is for tickets about the ensure CPAN distribution.

Report information
The Basics
Id: 95312
Status: open
Priority: 0/
Queue: ensure

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

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



Subject: Possible precedence issue with control flow operator
The test suite fails with newer perls (5.19.x). Probably it's an issue with the newly invented warning "Possible precedence issue with control flow operator". Regards, Slaven
Indeed. The new warning usually flags a bug in perl programs. The commit in perl was v5.19.3-554-g9da2d04. Sample fail report http://www.cpantesters.org/cpan/report/2da9743a-1edb-11e3-917c-d4047f66b2dc The flagged bug is in this line: https://metacpan.org/source/GMCH/ensure-1.10/lib/ensure.pm#L414 return *{$pkg.'::'}{HASH} or crunch "cannot find package '$pkg'" ; The part after the "or" can never be reached. HTH&&Thanks,