keep paths consistently slashed on windows
Gurusamy Sarathy [Tue, 7 May 2002 23:42:11 +0000 (23:42 +0000)]
p4raw-id: //depot/perl@16459

t/harness

index 53665f4..1a15ebc 100644 (file)
--- a/t/harness
+++ b/t/harness
@@ -74,7 +74,9 @@ if (@ARGV) {
        push @tests, <pod/*.t>;
     }
 }
-
+if ($^O eq 'MSWin32') {
+    s,\\,/,g for @tests;
+}
 Test::Harness::runtests @tests;
 exit(0) unless -e "../testcompile";