From: Nick Ing-Simmons Date: Thu, 24 Jan 2002 07:50:38 +0000 (+0000) Subject: Expand command line test globs on Win32. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4efb34a6d9cca053e4635f6fdedd5c6efdc554d8;p=p5sagit%2Fp5-mst-13.2.git Expand command line test globs on Win32. p4raw-id: //depot/perlio@14401 --- diff --git a/t/harness b/t/harness index 330cc43..a19363a 100644 --- 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, ;