Subject: | Possible precedence issue with control flow operator |
The test suite is noisy in bleadperl with heaps of warnings as you can see in this sample fail report:
http://www.cpantesters.org/cpan/report/39233624
Pass reports are affected as well, so I do not believe that there is a connection from the warning to the fails. But it's worth to fix before digging deeper.
The reason is obvious. https://metacpan.org/source/JFRIED/Rex-0.44.1/lib/Rex/Helper/System.pm#L16 has a construct like
return 1 or return 2;
Which never returns 2 because of precedence.
HTH && Regards,
(Disclaimer: this was discovered by statistical analysis, I'm not speaking as a user)