This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=68789dd9d1993c2c5977107e5cda74846ddf4751 commit 68789dd9d1993c2c5977107e5cda74846ddf4751 Author: Guillem Jover <[email protected]> AuthorDate: Sun Dec 19 23:09:43 2021 +0100 test: Remove now unused TAP tests support from src/ We have rewritten these tests as autotests, so we no longer need that infrastructure. --- scripts/Test/Dpkg.pm | 2 +- src/Makefile.am | 13 ++----------- 2 files changed, 3 insertions(+), 12 deletions(-) diff --git a/scripts/Test/Dpkg.pm b/scripts/Test/Dpkg.pm index 7c90fb46b..39e04acae 100644 --- a/scripts/Test/Dpkg.pm +++ b/scripts/Test/Dpkg.pm @@ -112,7 +112,7 @@ sub test_get_perl_dirs if ($test_mode eq 'cpan') { return qw(t lib); } else { - return qw(t src/t lib utils/t scripts dselect); + return qw(t lib utils/t scripts dselect); } } diff --git a/src/Makefile.am b/src/Makefile.am index 3851c2920..324a23527 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -149,15 +149,6 @@ install-data-local: $(MKDIR_P) $(DESTDIR)$(admindir)/parts $(MKDIR_P) $(DESTDIR)$(admindir)/updates -test_tmpdir = t.tmp - -test_scripts = \ - # EOL - -EXTRA_DIST += $(test_scripts) - -include $(top_srcdir)/build-aux/tap.am - EXTRA_DIST += $(srcdir)/at/atlocal.in EXTRA_DIST += $(srcdir)/at/package.m4 @@ -178,8 +169,8 @@ DISTCLEANFILES += at/atconfig include $(top_srcdir)/build-aux/autotest.am -check-local: tap-check autotest-check +check-local: autotest-check installcheck-local: autotest-installcheck -clean-local: tap-clean autotest-clean +clean-local: autotest-clean -- Dpkg.Org's dpkg

