2013-12-10 14:54:34 +00:00
|
|
|
|
# Run program $1 as part of ‘make installcheck’.
|
|
|
|
|
define run-install-test =
|
|
|
|
|
|
|
|
|
|
installcheck: $1
|
|
|
|
|
|
|
|
|
|
# Run the test in its own directory to mimick Automake behaviour.
|
|
|
|
|
$1.run: $1 $(_PREV_TEST)
|
|
|
|
|
|
2014-02-01 11:20:06 +00:00
|
|
|
|
_installcheck-list += $1
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
|
|
installcheck: install
|
2014-02-01 11:20:06 +00:00
|
|
|
|
@total=0; failed=0; for i in $(_installcheck-list); do \
|
2013-12-10 14:54:34 +00:00
|
|
|
|
total=$$((total + 1)); \
|
|
|
|
|
echo "running test $$i"; \
|
2014-02-01 11:20:06 +00:00
|
|
|
|
if (cd $$(dirname $$i) && $(tests-environment) $$(basename $$i)); then \
|
2013-12-10 14:54:34 +00:00
|
|
|
|
echo "PASS: $$i"; \
|
|
|
|
|
else \
|
|
|
|
|
echo "FAIL: $$i"; \
|
|
|
|
|
failed=$$((failed + 1)); \
|
|
|
|
|
fi; \
|
|
|
|
|
done; \
|
|
|
|
|
if [ "$$failed" != 0 ]; then \
|
|
|
|
|
echo "$$failed out of $$total tests failed "; \
|
|
|
|
|
exit 1; \
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
.PHONY: check installcheck
|