Because of #16909 MANIFEST changes.
Jarkko Hietaniemi [Fri, 31 May 2002 01:10:08 +0000 (01:10 +0000)]
p4raw-id: //depot/perl@16910

t/TEST
t/harness

diff --git a/t/TEST b/t/TEST
index 1329205..f2f623d 100755 (executable)
--- a/t/TEST
+++ b/t/TEST
@@ -97,7 +97,7 @@ unless (@ARGV) {
     my $mani = File::Spec->catfile($updir, "MANIFEST");
     if (open(MANI, $mani)) {
         while (<MANI>) { # similar code in t/harness
-           if (m!^(ext/\S+/?([^/]+\.t|test\.pl)|lib/\S+?(\.t|test\.pl))\s!) {
+           if (m!^(ext/\S+/?(?:[^/\s]+\.t|test\.pl)|lib/\S+?(?:\.t|test\.pl))\s!) {
                $t = $1;
                if (!$core || $t =~ m!^lib/[a-z]!)
                {
index 455a1f9..f7239fe 100644 (file)
--- a/t/harness
+++ b/t/harness
@@ -71,7 +71,7 @@ if (@ARGV) {
        my $mani  = File::Spec->catfile(File::Spec->updir, "MANIFEST");
        if (open(MANI, $mani)) {
            while (<MANI>) { # similar code in t/TEST
-           if (m!^(ext/\S+/?([^/]+\.t|test\.pl)|lib/\S+?(\.t|test\.pl))\s!) {
+           if (m!^(ext/\S+/?(?:[^/\s]+\.t|test\.pl)|lib/\S+?(?:\.t|test\.pl))\s!) {
                    push @tests, File::Spec->catfile($updir, $1);
                }
            }