in reply to So much for Test::* :)
Just a guess... but maybe the shell is expected to expand the * wildcards?
Update: ...apparently not, as ExtUtils::Command::MM::test_harness() has
+ # Because Windows doesn't do this for us and listing all the *.t files # out on the command line can blow over its exec limit. require ExtUtils::Command; my @argv = ExtUtils::Command::expand_wildcards(@ARGV);
which is implemented as
my $wild_regex = $Is_VMS ? '*%' : '*?'; sub expand_wildcards { @ARGV = map(/[$wild_regex]/o ? glob($_) : $_,@ARGV); }
No idea why this apparently doesn't work for you.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: So much for Test::* :)
by BrowserUk (Patriarch) on Oct 23, 2008 at 00:24 UTC | |
|
Re^2: So much for Test::* :)
by ikegami (Patriarch) on Oct 23, 2008 at 04:07 UTC |