Slaven Rezić
Slaven Rezić
Well, I never use perlcritic myself. The manpage suggests to use the `--theme` option like this: ``` $ /opt/perl-5.18.2/bin/perlcritic --theme core --brutal blib/lib/RPerl/Test/ArrayDereference/program_00_bad_00.pl; echo $? file requires POD at line...
Now it's OK, as expected: ``` $ /opt/perl-5.18.2/bin/perlcritic --theme core --brutal --exclude=RequirePod blib/lib/RPerl/Test/ArrayDereference/program_00_bad_00.pl; echo $? blib/lib/RPerl/Test/ArrayDereference/program_00_bad_00.pl source OK 0 ```
``` $ /opt/perl-5.22.2/bin/perlcritic --theme core --brutal --exclude=RequirePod blib/lib/RPerl/Test/Operator05BitwiseNegation/program_00_good.pl; echo $? Code is not tidy at line 1, column 1. See page 33 of PBP. (Severity: 1) Use of bitwise operator...
Two more policies have to be excluded: ``` $ /opt/perl-5.22.2/bin/perlcritic --theme core --brutal --exclude=RequirePod --exclude=ProhibitBitwiseOperators --exclude=RequireTidyCode blib/lib/RPerl/Test/Operator05BitwiseNegation/program_00_good.pl; echo $? blib/lib/RPerl/Test/Operator05BitwiseNegation/program_00_good.pl source OK 0 ``` See: * https://metacpan.org/source/PETDANCE/Perl-Critic-Bangs-1.10/lib/Perl/Critic/Policy/Bangs/ProhibitBitwiseOperators.pm * https://metacpan.org/source/THALJEF/Perl-Critic-1.126/lib/Perl/Critic/Policy/CodeLayout/RequireTidyCode.pm
Sorry, I missed the last request. I checked now with the current release 2.450000, and only `Operator10NamedUnaryLog/program_00_good.pl` is failing so far: ``` $ /opt/perl-5.12.5/bin/perlcritic --theme core --brutal --exclude=RequirePod blib/lib/RPerl/Test/Operator10NamedUnaryLog/program_00_good.pl; echo...
OK, I found the issue: this happens because I use `sudo su cpansand` to change the user before starting the smokers etc. On FreeBSD systems it seems that `sudo` changes...
SIGABRTs also seen on Linux systems.
A possible workaround: interpolate your inputs into the script code: ``` console.log('my_input =', "${{ inputs.my_input }}") ``` However this breaks if the input value contains certain characters, e.g. a double...
Same for the latest devel version 0.92_003. Latest pass report was in May 2019: http://fast-matrix.cpantesters.org/?dist=Finance-Robinhood%200.92_003;reports=1#sl=7,1
Sorry, this should read: >= 7.66