aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Allbery <eagle@eyrie.org>2018-06-03 16:44:42 -0700
committerRuss Allbery <eagle@eyrie.org>2018-06-03 16:54:27 -0700
commitc6ed4b498a8c63d577d8380bf56dc8afc2f16089 (patch)
tree1ae4032739dca661df8c6f81de1b6194548cec41
parentdadc06bdd09c60737f2800c01d98bfc16e6e2747 (diff)
Ignore _build in Test::RRA::Automake
all_files should ignore the top-level _build directory, since that's used by Automake for build testing.
-rw-r--r--tests/tap/perl/Test/RRA/Automake.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/tap/perl/Test/RRA/Automake.pm b/tests/tap/perl/Test/RRA/Automake.pm
index 6c6e947..e4db56c 100644
--- a/tests/tap/perl/Test/RRA/Automake.pm
+++ b/tests/tap/perl/Test/RRA/Automake.pm
@@ -73,7 +73,9 @@ BEGIN {
# Directories to skip globally when looking for all files, or for directories
# that could contain Perl files.
-my @GLOBAL_SKIP = qw(.git autom4te.cache build-aux perl/_build perl/blib);
+my @GLOBAL_SKIP = qw(
+ .git _build autom4te.cache build-aux perl/_build perl/blib
+);
# Additional paths to skip when building a list of all files in the
# distribution. This primarily skips build artifacts that aren't interesting