1
0
mirror of synced 2026-02-26 16:23:27 +00:00

Ignore cover_db directory in t/perl-syntax.t

This commit is contained in:
Axel Beckert
2013-12-15 17:32:32 +01:00
parent 5d3f159aad
commit c5a2e2427a
2 changed files with 4 additions and 0 deletions

1
debian/changelog vendored
View File

@@ -3,6 +3,7 @@ xen-tools (4.4+dev-1) UNRELEASED; urgency=low
* Apply patch by Adrian C. (anrxc) to allow to override hooks in
/usr/share/xen-tools/*.d/ with hooks in /etc/xen-tools/hooks.d/.
Thanks! (Also add /etc/xen-tools/hooks.d/ to debian/dirs.)
* Ignore cover_db directory in t/perl-syntax.t.
-- Axel Beckert <abe@debian.org> Sun, 15 Dec 2013 17:20:43 +0100

View File

@@ -51,6 +51,9 @@ sub checkFile
# `tests/hook-tls.t` is too.
return if ( $file =~ /hook-tls.t$/ );
# Ignore cover_db files
return if ( $file =~ /^\.\/cover_db\// );
# See if it is a perl file.
my $isPerl = 0;