Skip to content

Commit

Permalink
Merge branch 'elegant-tests' of https://github.com/copumpkin/nix
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Oct 3, 2017
2 parents fce24b7 + 60ecbd7 commit c6676ea
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions mk/tests.mk
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,38 @@ define run-install-test

endef

# Color code from https://unix.stackexchange.com/a/10065
installcheck:
@total=0; failed=0; for i in $(_installcheck-list); do \
@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 \
total=$$((total + 1)); \
echo "running test $$i"; \
if (cd $$(dirname $$i) && $(tests-environment) $$(basename $$i)); then \
echo "PASS: $$i"; \
printf "running test $$i... $${pad:$${#i}}"; \
log="$$(cd $$(dirname $$i) && $(tests-environment) $$(basename $$i) 2>&1)"; \
if [ $$? == 0 ]; then \
echo "[$${green}PASS$$normal]"; \
else \
echo "FAIL: $$i"; \
echo "[$${red}FAIL$$normal]"; \
echo "$$log" | sed 's/^/ /'; \
failed=$$((failed + 1)); \
fi; \
done; \
if [ "$$failed" != 0 ]; then \
echo "$$failed out of $$total tests failed "; \
echo "$${red}$$failed out of $$total tests failed $$normal"; \
exit 1; \
else \
echo "$${green}All tests succeeded"; \
fi

.PHONY: check installcheck

0 comments on commit c6676ea

Please sign in to comment.