Subject: | Tests are using "perl" instead of $^X |
As the subject line says, I find in your tests:
t/070_script.t:my $command = "perl -I lib scripts/hypertoc --quiet
--gen_anchors --outfile test1_anch.wml tfiles/test1.wml";
t/070_script.t:$command = "perl -I lib scripts/hypertoc --gen_toc
--quiet --outfile test1_toc.html test1_anch.wml";
t/070_script.t:$command = "perl -I lib scripts/hypertoc --gen_anchors
--quiet --gen_toc --outfile test1a_toc.html tfiles/test1.wml";
t/070_script.t:$command = "perl -I lib scripts/hypertoc --argfile
tfiles/test1b.args tfiles/test1.wml";
So you always test a different perl thatn the one that is running the
test. And in my case it blows up because that other perl has a
dependency missing and no voodoo in the world would change that.
Please use $^X instead.
Thanks.