TEST needs to ignore SCM files
Alan Burlison [Thu, 27 May 2004 23:32:28 +0000 (00:32 +0100)]
Message-ID: <40B66C7C.8030303@sun.com>

p4raw-id: //depot/perl@22852

t/TEST

diff --git a/t/TEST b/t/TEST
index 7210d2f..7b9afa6 100755 (executable)
--- a/t/TEST
+++ b/t/TEST
@@ -68,7 +68,8 @@ sub _find_tests {
     my($dir) = @_;
     opendir DIR, $dir or die "Trouble opening $dir: $!";
     foreach my $f (sort { $a cmp $b } readdir DIR) {
-        next if $f eq $curdir or $f eq $updir;
+        next if $f eq $curdir or $f eq $updir or
+           $f =~ /^(?:CVS|RCS|SCCS|\.svn)$/;
 
         my $fullpath = File::Spec->catfile($dir, $f);