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

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>;