Subject: | Fails since 5.18 due to qw() semantic change |
Up to perl 5.16.3 there was a warning 'Use of qw(...) as parentheses is deprecated' when a construct like ...Port->import qw( :PARA... was used. Newer perls require that to be written ...Port->import(qw( :PARA... You can see the warning e.g. in report
http://www.cpantesters.org/cpan/report/d0f67e2a-6419-11e3-b04b-a4a6f1eb6092
In perl 5.18 the deprecation was actually implemented, so now you can see the error cause test failure in
http://www.cpantesters.org/cpan/report/60bee03a-b810-11e2-95d3-2d1ac1508286
HTH && Thanks,
(Disclaimer: this was discovered by statistical analysis, I'm not speaking as a user)