projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
5d604be
)
Expand command line test globs on Win32.
Nick Ing-Simmons [Thu, 24 Jan 2002 07:50:38 +0000 (07:50 +0000)]
p4raw-id: //depot/perlio@14401
t/harness
patch
|
blob
|
blame
|
history
diff --git
a/t/harness
b/t/harness
index
330cc43
..
a19363a
100644
(file)
--- a/
t/harness
+++ b/
t/harness
@@
-41,7
+41,12
@@
foreach (keys %datahandle) {
my @tests = ();
if (@ARGV) {
- @tests = @ARGV;
+ if ($^O eq 'MSWin32') {
+ @tests = map(glob($_),@ARGV);
+ }
+ else {
+ @tests = @ARGV;
+ }
} else {
unless (@tests) {
push @tests, <base/*.t>;