summaryrefslogtreecommitdiff
path: root/t/TEST
diff options
context:
space:
mode:
authorAlan Burlison <Alan.Burlison@uk.sun.com>2004-05-28 00:32:28 +0100
committerH.Merijn Brand <h.m.brand@xs4all.nl>2004-05-28 05:31:25 +0000
commit0b8342839983807250e9f986d89f01500807f071 (patch)
treeec08bcf4df72358439436f4d801c4e73a0d4b9ce /t/TEST
parentacb03d056a12d3ec56e57dbf40103eb221261b61 (diff)
downloadperl-0b8342839983807250e9f986d89f01500807f071.tar.gz
TEST needs to ignore SCM files
Message-ID: <40B66C7C.8030303@sun.com> p4raw-id: //depot/perl@22852
Diffstat (limited to 't/TEST')
-rwxr-xr-xt/TEST3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/TEST b/t/TEST
index 7210d2f396..7b9afa661c 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);