diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/TESTrun | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/TESTrun b/tests/TESTrun index a258fa33..ac95270a 100755 --- a/tests/TESTrun +++ b/tests/TESTrun @@ -167,8 +167,9 @@ sub runtest { # Compare the standard error with what we think it should be. # if ($^O eq 'MSWin32') { + my $winoutput = File::Spec->canonpath($output); my $canonstderrlog = File::Spec->canonpath($stderrlog); - $nr = system "fc/lb1000/t/1 $output.stderr $canonstderrlog >tests/DIFF/$outputbase.stderr.diff"; + $nr = system "fc/lb1000/t/1 $winoutput.stderr $canonstderrlog >tests/DIFF/$outputbase.stderr.diff"; } else { $nr = system "diff $output.stderr $stderrlog >tests/DIFF/$outputbase.stderr.diff"; } |