diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:18 +0000 |
commit | f2621414ee5f2f601424c22f00e207903e3b6104 (patch) | |
tree | 56a856dafd1ca684bb23263cacaa723ee4f404fc /test/t/Makefile.am | |
parent | Adding debian version 1:2.11-8. (diff) | |
download | bash-completion-f2621414ee5f2f601424c22f00e207903e3b6104.tar.xz bash-completion-f2621414ee5f2f601424c22f00e207903e3b6104.zip |
Merging upstream version 1:2.12.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'test/t/Makefile.am')
-rw-r--r-- | test/t/Makefile.am | 33 |
1 files changed, 30 insertions, 3 deletions
diff --git a/test/t/Makefile.am b/test/t/Makefile.am index 801841f..5a59969 100644 --- a/test/t/Makefile.am +++ b/test/t/Makefile.am @@ -21,6 +21,7 @@ EXTRA_DIST = \ test_apt_build.py \ test_apt_cache.py \ test_apt_get.py \ + test_apt_mark.py \ test_aptitude.py \ test_arch.py \ test_arp.py \ @@ -36,8 +37,10 @@ EXTRA_DIST = \ test_autoscan.py \ test_autossh.py \ test_autoupdate.py \ + test_avahi_browse.py \ test_avctrl.py \ test_awk.py \ + test_b2sum.py \ test_badblocks.py \ test_base64.py \ test_bash.py \ @@ -47,6 +50,7 @@ EXTRA_DIST = \ test_bk.py \ test_bmake.py \ test_brctl.py \ + test_bsdtar.py \ test_btdownloadcurses_py.py \ test_btdownloadgui_py.py \ test_btdownloadheadless_py.py \ @@ -214,13 +218,16 @@ EXTRA_DIST = \ test_growisofs.py \ test_grpck.py \ test_grub.py \ + test_gssdp_device_sniffer.py \ test_gssdp_discover.py \ test_gzip.py \ + test_hash.py \ test_hciattach.py \ test_hciconfig.py \ test_hcitool.py \ test_hddtemp.py \ test_head.py \ + test_help.py \ test_hexdump.py \ test_hid2hci.py \ test_host.py \ @@ -253,6 +260,7 @@ EXTRA_DIST = \ test_ip.py \ test_ipcalc.py \ test_iperf.py \ + test_iperf3.py \ test_ipmitool.py \ test_ipsec.py \ test_iptables.py \ @@ -395,6 +403,7 @@ EXTRA_DIST = \ test_mysqladmin.py \ test_nc.py \ test_ncftp.py \ + test_neomutt.py \ test_nethogs.py \ test_netstat.py \ test_newgrp.py \ @@ -413,7 +422,6 @@ EXTRA_DIST = \ test_objdump.py \ test_od.py \ test_oggdec.py \ - test_op.py \ test_openssl.py \ test_opera.py \ test_optipng.py \ @@ -422,6 +430,7 @@ EXTRA_DIST = \ test_passwd.py \ test_paste.py \ test_patch.py \ + test_pdftoppm.py \ test_pdftotext.py \ test_perl.py \ test_perlcritic.py \ @@ -439,6 +448,7 @@ EXTRA_DIST = \ test_pkg_get.py \ test_pkg_info.py \ test_pkgadd.py \ + test_pkgconf.py \ test_pkgrm.py \ test_pkgtool.py \ test_pkgutil.py \ @@ -461,6 +471,7 @@ EXTRA_DIST = \ test_prelink.py \ test_printenv.py \ test_protoc.py \ + test_ps.py \ test_psql.py \ test_ptx.py \ test_puppet.py \ @@ -483,11 +494,13 @@ EXTRA_DIST = \ test_pyflakes.py \ test_pylint.py \ test_pylint_3.py \ + test_pyston.py \ test_pytest.py \ test_python.py \ test_python3.py \ test_pyvenv.py \ test_qemu.py \ + test_qemu_system_x86_64.py \ test_qrunner.py \ test_querybts.py \ test_quota.py \ @@ -540,6 +553,10 @@ EXTRA_DIST = \ test_sftp.py \ test_sh.py \ test_sha1sum.py \ + test_sha224sum.py \ + test_sha256sum.py \ + test_sha384sum.py \ + test_sha512sum.py \ test_shar.py \ test_shellcheck.py \ test_sitecopy.py \ @@ -564,6 +581,7 @@ EXTRA_DIST = \ test_ssh_add.py \ test_ssh_copy_id.py \ test_ssh_keygen.py \ + test_ssh_keyscan.py \ test_sshfs.py \ test_sshmitm.py \ test_sshow.py \ @@ -600,6 +618,8 @@ EXTRA_DIST = \ test_tox.py \ test_tr.py \ test_tracepath.py \ + test_tree.py \ + test_truncate.py \ test_tshark.py \ test_tsig_keygen.py \ test_tune2fs.py \ @@ -663,6 +683,7 @@ EXTRA_DIST = \ test_wvdial.py \ test_xdg_mime.py \ test_xdg_settings.py \ + test_xev.py \ test_xfreerdp.py \ test_xgamma.py \ test_xhost.py \ @@ -691,8 +712,14 @@ all: PYTEST = @PYTEST@ -check-local: - $(PYTEST) $(PYTESTFLAGS) $(srcdir) +# Some tests require completions/ symlinks to be in place, which would be a +# chore to achieve in the build dir with VPATH builds (well not the symlinks, +# but the "main" files they target), e.g. "make distcheck". Therefore we test +# the installed tree instead, which isn't a bad idea in the first place. +installcheck-local: + ABS_TOP_BUILDDIR="$(abs_top_builddir)" \ + BASH_COMPLETION_TEST_BASH_COMPLETION="$(DESTDIR)/$(pkgdatadir)/bash_completion" \ + $(PYTEST) $(PYTESTFLAGS) $(srcdir) clean-local: $(RM) -R __pycache__ |