diff --git a/Makefile b/Makefile index 3677977..680c116 100644 --- a/Makefile +++ b/Makefile @@ -8,9 +8,12 @@ install: cp -r zsh-syntax-highlighting.zsh highlighters $(SHARE_DIR) test: + @result=0 @for test in highlighters/*; do \ if [ -d $$test/test-data ]; then \ echo "Running test $${test##*/}"; \ zsh tests/test-highlighting.zsh "$${test##*/}"; \ + : $$(( result |= $$? )); \ fi \ done + @exit $$result