This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=ade9c8e28de7950b73f0e752555880f89bf847c4 The following commit(s) were added to refs/heads/master by this push: new ade9c8e28 test: Skip autogenerated files from codespell ade9c8e28 is described below commit ade9c8e28de7950b73f0e752555880f89bf847c4 (HEAD -> master) Author: Guillem Jover <[email protected]> AuthorDate: Mon Jun 1 04:10:04 2020 +0200 test: Skip autogenerated files from codespell Files that have been autogenerated are of no interest because in many cases we have little direct control over them. --- debian/changelog | 1 + t/codespell.t | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 995f8e704..b7ed22066 100644 --- a/debian/changelog +++ b/debian/changelog @@ -116,6 +116,7 @@ dpkg (1.20.1) UNRELEASED; urgency=medium - Install specifications to /usr/share/doc/dpkg/ in the dpkg-dev package. * Test suite: - Rename deb-content test cases to make them more descriptive. + - Skip autogenerated files from codespell. [ Updated programs translations ] * German (Sven Joachim). diff --git a/t/codespell.t b/t/codespell.t index e7b013860..13d66ee1d 100644 --- a/t/codespell.t +++ b/t/codespell.t @@ -33,14 +33,19 @@ my @codespell_skip = qw( *.add *.cache *~ + .libs + .deps ChangeLog Makefile.in Makefile configure + config.* libtool libtool.m4 aclocal.m4 + autom4te.cache _build + build-aux build-tree tmp ); -- Dpkg.Org's dpkg

