2016-11-25 23:37:43 +00:00
|
|
|
|
# Run program $1 as part of ‘make installcheck’.
|
2014-02-04 10:02:49 +00:00
|
|
|
|
define run-install-test
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
|
|
|
|
installcheck: $1
|
|
|
|
|
|
2014-02-01 11:20:06 +00:00
|
|
|
|
_installcheck-list += $1
|
2013-12-10 14:54:34 +00:00
|
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
2017-10-03 04:54:00 +00:00
|
|
|
|
# Color code from https://unix.stackexchange.com/a/10065
|
2014-02-01 14:33:27 +00:00
|
|
|
|
installcheck:
|
2017-10-03 04:54:00 +00:00
|
|
|
|
@total=0; failed=0; \
|
|
|
|
|
pad=" "; \
|
|
|
|
|
red=""; \
|
|
|
|
|
green=""; \
|
|
|
|
|
normal=""; \
|
|
|
|
|
if [ -t 1 ]; then \
|
|
|
|
|
ncolors="$$(tput colors)"; \
|
|
|
|
|
if [[ -n "$$ncolors" && $$ncolors -ge 8 ]]; then \
|
|
|
|
|
red="$$(tput setaf 1)"; \
|
|
|
|
|
green="$$(tput setaf 2)"; \
|
|
|
|
|
normal="$$(tput sgr0)"; \
|
|
|
|
|
fi; \
|
|
|
|
|
fi; \
|
|
|
|
|
for i in $(_installcheck-list); do \
|
2013-12-10 14:54:34 +00:00
|
|
|
|
total=$$((total + 1)); \
|
2017-10-03 04:54:00 +00:00
|
|
|
|
printf "running test $$i... $${pad:$${#i}}"; \
|
|
|
|
|
log="$$(cd $$(dirname $$i) && $(tests-environment) $$(basename $$i) 2>&1)"; \
|
|
|
|
|
if [ $$? == 0 ]; then \
|
|
|
|
|
echo "[$${green}PASS$$normal]"; \
|
2013-12-10 14:54:34 +00:00
|
|
|
|
else \
|
2017-10-03 04:54:00 +00:00
|
|
|
|
echo "[$${red}FAIL$$normal]"; \
|
|
|
|
|
echo "$$log" | sed 's/^/ /'; \
|
2013-12-10 14:54:34 +00:00
|
|
|
|
failed=$$((failed + 1)); \
|
|
|
|
|
fi; \
|
|
|
|
|
done; \
|
|
|
|
|
if [ "$$failed" != 0 ]; then \
|
2017-10-03 04:54:00 +00:00
|
|
|
|
echo "$${red}$$failed out of $$total tests failed $$normal"; \
|
2013-12-10 14:54:34 +00:00
|
|
|
|
exit 1; \
|
2017-10-03 04:54:00 +00:00
|
|
|
|
else \
|
|
|
|
|
echo "$${green}All tests succeeded"; \
|
2013-12-10 14:54:34 +00:00
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
.PHONY: check installcheck
|