Skip to content

Commit

Permalink
Add missing file
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Dec 4, 2013
1 parent f3cf043 commit bf8b66a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions mk/tests.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# 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)

_installcheck_list += $1

endef

installcheck: install
@total=0; failed=0; for i in $(_installcheck_list); do \
total=$$((total + 1)); \
echo "running test $$i"; \
if (cd $$(dirname $$i) && $(TESTS_ENVIRONMENT) $$(basename $$i)); then \
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

0 comments on commit bf8b66a

Please sign in to comment.