Subject: | test uses perl from path instead of $^X |
The test t/13-tab2graph.t calls bin/tab2graph. This contains a shebang
#!/usr/bin/env perl
which calls the first perl in the PATH. If this perl has no GraphViz
installed then the test fails.
The following pseud patch fixes this:
- my $command = "$TAB2GRAPH -c -o $out_file $data 2>&1";
+ my $command = "\"$^X\" $TAB2GRAPH -c -o $out_file $data 2>&1";
Thanks,