Subject: | System perl used in tests |
The test suite fails on a number of systems, see http://matrix.cpantesters.org/?dist=Text-PerlPP%200.4.0
One possible problem:
Getopt::Long version 2.5 required--this is only version 2.48 at /usr/local/lib/perl5/5.24/Getopt/Long.pm line 1530.
It looks like the wrong perl is executed here --- this looks like the system perl, not the perl used for building the distribution, hence the Getopt::Long minimum version requirement fails here. Possible fixes are (in order of preference):
- use the blib/script variant of the tested script (here the shebang is normally already adjusted)
- or use $^X when calling the tested script
- or adjust $ENV{PATH} before running the problematic script.