in reply to Re: Test::Harness not working on my machine
in thread Test::Harness not working on my machine

Get the latest Test::Harness, and report back please.

Version 2.26 has the same problem.

It's much more complex and split across multiple files now, but after some digging, I find:

open(FILE, "$cmd $switches $file|")
I modified line 273 of Test::Harness::Straps.pm to read
my $cmd = $self->{_is_vms} ? "MCR $^X" : ( $^O eq 'MSWin32' ? Win3 +2::GetShortPathName($^X) : $^X);
to add a case for Windows. Now it works again.

—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

    If you've not done so already, drop a bug-report and/or a failing test and patch to schwern (e-mail would probably be best - he doesn't seem to be a perlmonks regular :-)

    In my experience he appreciates patches!