Makefile: exit non-zero for a failed test

This commit is contained in:
Matthew Martin 2015-10-19 01:36:42 -05:00
parent 83c3f96109
commit 2883c9582d

View file

@ -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