From: Phil Sutter Date: Sat, 15 Oct 2022 10:25:28 +0000 (+0200) Subject: Makefile.am: Integrate testsuites X-Git-Tag: v1.8.9~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e1eaa04e31e44eab729e4a39a9967c6f1e24d499;p=thirdparty%2Fiptables.git Makefile.am: Integrate testsuites Support calling 'make check' in topdir to run all three testsuites. While updating .gitignore, also add 'configure~' my autotools create and the tags file. Signed-off-by: Phil Sutter --- diff --git a/.gitignore b/.gitignore index a206fb48..ec4e44ca 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,7 @@ Makefile.in /build-aux/ /config.* /configure +/configure~ /libtool /stamp-h1 /iptables/iptables-apply.8 @@ -29,3 +30,14 @@ Makefile.in # vim/nano swap file *.swp + +/tags + +# make check results +/test-suite.log +/iptables-test.py.log +/iptables-test.py.trs +/xlate-test.py.log +/xlate-test.py.trs +iptables/tests/shell/run-tests.sh.log +iptables/tests/shell/run-tests.sh.trs diff --git a/Makefile.am b/Makefile.am index 61604d32..451c3cb2 100644 --- a/Makefile.am +++ b/Makefile.am @@ -33,3 +33,5 @@ tarball: config.status: extensions/GNUmakefile.in \ include/xtables-version.h.in + +TESTS = xlate-test.py iptables-test.py iptables/tests/shell/run-tests.sh