diff options
author | Russ Allbery <eagle@eyrie.org> | 2018-06-03 16:44:42 -0700 |
---|---|---|
committer | Russ Allbery <eagle@eyrie.org> | 2018-06-03 16:54:27 -0700 |
commit | c6ed4b498a8c63d577d8380bf56dc8afc2f16089 (patch) | |
tree | 1ae4032739dca661df8c6f81de1b6194548cec41 /tests/tap/perl/Test | |
parent | dadc06bdd09c60737f2800c01d98bfc16e6e2747 (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.
Diffstat (limited to 'tests/tap/perl/Test')
-rw-r--r-- | tests/tap/perl/Test/RRA/Automake.pm | 4 |
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 |