Subject: | Calling the wrong perl |
Found this line in t/output.t line 31:
open(my $fout, '-|', 'perl -Iblib/lib ' . $tmp->filename);
This calls the first perl in the PATH, which is not necessarily the one
that called the test. Sample fail report:
http://www.cpantesters.org/cpan/report/20156134
Solutions exist many, the most trivial is to replace "perl" with $^X.
HTH,