From: Gurusamy Sarathy <gsar@cpan.org>
Date: Tue, 7 May 2002 23:42:11 +0000 (+0000)
Subject: keep paths consistently slashed on windows
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=22a65f1e060cc583560af22c8de3f5ccad3c0161;p=p5sagit%2Fp5-mst-13.2.git

keep paths consistently slashed on windows

p4raw-id: //depot/perl@16459
---

diff --git a/t/harness b/t/harness
index 53665f4..1a15ebc 100644
--- 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";