Subject: | Comment in qw(...) (1.9755) |
On one smoker I see these warnings while running make test:
...
Possible attempt to put comments in qw() list at /home/eserte/.cpan/build/2018031418/Time-HiRes-1.9755-KbUE4j/blib/lib/Time/HiRes.pm line 54.
Possible attempt to separate words with commas at /home/eserte/.cpan/build/2018031418/Time-HiRes-1.9755-KbUE4j/blib/lib/Time/HiRes.pm line 54.
t/alarm.t ......... ok
...
Probably caused by the comments in the @EXPORT_OK = qw(...) block --- these comments are not really comments, but real list elements. So we can import now funny things:
$ perl5.18.4 -Mblib -MTime::HiRes=TODO: -e1
$ perl5.18.4 -Mblib -MTime::HiRes=somehow. -e1
$ perl5.18.4 -Mblib -MTime::HiRes=suprerset -e1
(All sample oneliners without errors)