From: Alan Burlison Date: Thu, 27 May 2004 23:32:28 +0000 (+0100) Subject: TEST needs to ignore SCM files X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0b8342839983807250e9f986d89f01500807f071;p=p5sagit%2Fp5-mst-13.2.git TEST needs to ignore SCM files Message-ID: <40B66C7C.8030303@sun.com> p4raw-id: //depot/perl@22852 --- diff --git a/t/TEST b/t/TEST index 7210d2f..7b9afa6 100755 --- 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);