diff options
author | Alan Burlison <Alan.Burlison@uk.sun.com> | 2004-05-28 00:32:28 +0100 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2004-05-28 05:31:25 +0000 |
commit | 0b8342839983807250e9f986d89f01500807f071 (patch) | |
tree | ec08bcf4df72358439436f4d801c4e73a0d4b9ce /t/TEST | |
parent | acb03d056a12d3ec56e57dbf40103eb221261b61 (diff) | |
download | perl-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-x | t/TEST | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |