test_programs is included in EXTRA_DIST, so we need to
make sure compiled binaries don't end in there or they
will be included in release archives.
Signed-off-by: Andrea Bolognani <abologna(a)redhat.com>
---
tests/Makefile.am | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 1fc240b..bf2dbbc 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -4,7 +4,6 @@ test_helpers = \
conftest.py
test_programs = \
- $(check_PROGRAMS) \
test_connect.py \
test_domain.py \
test_network.py \
@@ -35,7 +34,10 @@ EXTRA_DIST = \
$(test_programs) \
travis-run
-TESTS = $(test_programs)
+TESTS = \
+ $(check_PROGRAMS) \
+ $(test_programs) \
+ $(NULL)
AM_TESTS_ENVIRONMENT = \
export abs_top_builddir="$(abs_top_builddir)"; \
--
2.17.1