Skip Menu |

This queue is for tickets about the String-ShellQuote CPAN distribution.

Report information
The Basics
Id: 38072
Status: resolved
Priority: 0/
Queue: String-ShellQuote

People
Owner: ROSCH [...] cpan.org
Requestors: mutant.nz [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.03
Fixed in: (no value)



Subject: #! line causing tests to fail during install
Hi, When trying to install this module on Solaris 10, Perl 5.8.8, I was getting the following: not ok 28 # line 104 # wanted [] # got [Can't exec "blib/script/shell-quote": No such file or directory at test.t line 93. ] not ok 29 # line 105 # wanted [a ] # got [Can't exec "blib/script/shell-quote": No such file or directory at test.t line 93. ] not ok 30 # line 106 # wanted ['' ] # got [Can't exec "blib/script/shell-quote": No such file or directory at test.t line 93. ] not ok 31 # line 107 # wanted [foo 'bar baz' '*' ] # got [Can't exec "blib/script/shell-quote": No such file or directory at test.t line 93. ] Failed 4/31 subtests The problem was the #! line in shell-quote pointed to /usr/local/bin/perl, which didn't exist on my system. Fixing this allowed the tests to pass. Thanks.
On Thu Jul 31 09:10:38 2008, Mutant wrote: Show quoted text
> > The problem was the #! line [in test.t] in shell-quote pointed to > /usr/local/bin/perl, which didn't exist on my system. Fixing this > allowed the tests to pass.
Thanks, I've changed test.t to use "#!perl" instead, and I believe this makes Test::Harness do the right thing. This will be uploaded shortly. Sorry I didn't respond sooner. Roderick