I have an autotools based project. When the "make check" target fails, I see something like this:
============================================================================
Testsuite summary for
============================================================================
============================================================================
See tests/python/test-suite.log
============================================================================
make[5]: *** [test-suite.log] Error 1
This is normal if this does not happen on a limited builder (in this case, buildpad buildd), where I see only the build log. Makefile.am in the affected directory is as follows:
EXTRA_DIST = test_inetdomain.py test_zone.py test_matcher.py test_dispatch.py test_nat.py test_log.py test_session.py test_stacking.py
noinst_SCRIPTS = runtest.sh
TESTS = runalltests.sh
.PHONY: mkzorp
mkzorp:
make -C ../../zorp
runtest.sh: mkzorp
What should I write in Makefile.am/what parameters that I must provide autoreconf / autoconf / which environment variables should I set to output the test to stdout / stderr?
source
share