]> Sergey Matveev's repositories - zsh-autoenv.git/blobdiff - Makefile
travis: add zsh 4/5 to matrix
[zsh-autoenv.git] / Makefile
index fc1e35da8b079d21a5e1e0289ad4a8db3225a031..ed90a571ed796dcf1896aca58255c9975516bbc6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -12,11 +12,13 @@ itest:
 
 # Run tests with all ZDOTDIRs.
 test_full:
+       ret=0; \
        for i in $(wildcard tests/ZDOTDIR*); do \
                echo "ZDOTDIR=$$i"; \
-               ZDOTDIR=${CURDIR}/$$i cram --shell=zsh -v tests; \
+               ZDOTDIR=${CURDIR}/$$i cram --shell=zsh -v tests || ret=$$?; \
                echo; \
-       done
+       done; \
+       return $$ret
 
 # Define targets for test files, with relative and abolute path.
 # Use verbose output, which is useful with Vim's 'errorformat'.
@@ -29,3 +31,6 @@ $(_TESTS_REL_AND_ABS):
 .PHONY: $(_TESTS_REL_AND_ABS)
 
 .PHONY: itest test
+
+clean:
+       $(RM) tests/*.err