Commit 385006599b993631fb2fc9250fe93bc017f18fd5

Authored by Jay Berkenbilt
1 parent 7b8bd515

fix-qtest: canonicalize before calling qtest-driver

This is necessary in case paths contain colons on Windows.
Showing 1 changed file with 1 additions and 1 deletions
run-qtest
... ... @@ -40,7 +40,7 @@ while (@ARGV)
40 40 elsif ($arg eq '--bin')
41 41 {
42 42 usage() unless @ARGV;
43   - push(@bin, shift(@ARGV));
  43 + push(@bin, abs_path(shift(@ARGV)));
44 44 }
45 45 elsif ($arg eq '--color')
46 46 {
... ...