fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmo-pcu/+/28957 )
Change subject: tests: make target 'check-local' depend on 'atconfig' ......................................................................
tests: make target 'check-local' depend on 'atconfig'
I believe this may be related to sporadic failures we hit on Jenkins:
test -z "atconfig" || rm -f atconfig ../../../tests/testsuite: line 987: ./atconfig: No such file or directory make[2]: *** [Makefile:1464: clean-local] Error 1
This dependency is present in all other Osmocom projects.
Change-Id: Id9bf06392ad31e1ecc66a5bd13069a915183a76b --- M tests/Makefile.am 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: laforge: Looks good to me, approved Jenkins Builder: Verified
diff --git a/tests/Makefile.am b/tests/Makefile.am index 08cdc17..d1021ee 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -244,7 +244,7 @@ @echo "Not running python-based tests (determined at configure-time)" endif
-check-local: $(BUILT_SOURCES) $(TESTSUITE) +check-local: atconfig $(BUILT_SOURCES) $(TESTSUITE) $(SHELL) '$(TESTSUITE)' $(TESTSUITEFLAGS) $(MAKE) $(AM_MAKEFLAGS) python-tests