projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
f7d585d
)
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
patch
|
blob
|
blame
|
history
diff --git
a/t/harness
b/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";