in reply to Re: Test::Harness not working on my machine
in thread Test::Harness not working on my machine
Version 2.26 has the same problem.
It's much more complex and split across multiple files now, but after some digging, I find:
I modified line 273 of Test::Harness::Straps.pm to readopen(FILE, "$cmd $switches $file|")
to add a case for Windows. Now it works again.my $cmd = $self->{_is_vms} ? "MCR $^X" : ( $^O eq 'MSWin32' ? Win3 +2::GetShortPathName($^X) : $^X);
—John
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Test::Harness not working on my machine
by adrianh (Chancellor) on Jan 13, 2003 at 10:12 UTC |