'make test': Pass -f to zsh to minimize environmental variation.

This commit is contained in:
Daniel Shahaf 2015-10-19 14:26:01 +00:00
parent 4604deb652
commit bde1c83af1
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ test:
@for test in highlighters/*; do \ @for test in highlighters/*; do \
if [ -d $$test/test-data ]; then \ if [ -d $$test/test-data ]; then \
echo "Running test $${test##*/}"; \ echo "Running test $${test##*/}"; \
zsh tests/test-highlighting.zsh "$${test##*/}"; \ zsh -f tests/test-highlighting.zsh "$${test##*/}"; \
: $$(( result |= $$? )); \ : $$(( result |= $$? )); \
fi \ fi \
done done