aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-03-29 19:48:30 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2023-06-12 19:39:52 +0700
commit7f4debf1b9ca2a9225c485f051016a4421180b99 (patch)
tree6fac1ff061f183f9f9e5eb240c1755933a8b31ee
parent2ec703f7c8a94e25677fde1b1d1a430696fb97e2 (diff)
tests: $(BUILT_SOURCES) is not defined
-rw-r--r--tests/Makefile.am5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 720d631..5084704 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -21,11 +21,12 @@ DISTCLEANFILES = atconfig
TESTSUITE = $(srcdir)/testsuite
if ENABLE_EXT_TESTS
-python-tests: $(BUILT_SOURCES)
+python-tests: $(top_builddir)/src/osmo-pcap-server \
+ $(top_builddir)/src/osmo-pcap-client
osmotestvty.py -p $(abs_top_srcdir) -w $(abs_top_builddir) -v
osmotestconfig.py -p $(abs_top_srcdir) -w $(abs_top_builddir) -v
else
-python-tests: $(BUILT_SOURCES)
+python-tests:
echo "Not running python-based tests (determined at configure-time)"
endif