Skip Menu |

This queue is for tickets about the HTML-GenToc CPAN distribution.

Report information
The Basics
Id: 41284
Status: resolved
Priority: 0/
Queue: HTML-GenToc

People
Owner: Nobody in particular
Requestors: ANDK [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 3.00
Fixed in: 3.20



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.