1
0
mirror of synced 2026-01-11 23:42:56 +00:00

t/perl-syntax.t: Ignore changelog files, too

This commit is contained in:
Axel Beckert 2014-10-26 01:43:45 +02:00
parent 5b2d7d5d75
commit 81ca2fb62d
2 changed files with 4 additions and 0 deletions

1
debian/changelog vendored
View File

@ -28,6 +28,7 @@ xen-tools (4.4+dev-1) UNRELEASED; urgency=low
+ Raise default password length from 8 to 23.
+ Flush output after each line in runCommand().
+ Makefile: Clean up coverage data in multiple targets.
+ t/perl-syntax.t: Ignore changelog files, too.
[ Santiago Vila ]
+ Fix unaligned maxmem output of xen-create-image. (Closes: #764126)

View File

@ -39,6 +39,9 @@ sub checkFile
# Nor about Makefiles
return if ( $file =~ /\/Makefile$/ );
# Nor about Change Logs
return if ( $file =~ /\/changelog$/i );
# Nor about git files
return if ( $file =~ /^\.\/\.git\// );