mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-26 00:40:59 +02:00
make test_full: handle error return code from cram
This commit is contained in:
parent
e29074c329
commit
102a3f2f44
6
Makefile
6
Makefile
@ -12,11 +12,13 @@ itest:
|
|||||||
|
|
||||||
# Run tests with all ZDOTDIRs.
|
# Run tests with all ZDOTDIRs.
|
||||||
test_full:
|
test_full:
|
||||||
|
ret=0; \
|
||||||
for i in $(wildcard tests/ZDOTDIR*); do \
|
for i in $(wildcard tests/ZDOTDIR*); do \
|
||||||
echo "ZDOTDIR=$$i"; \
|
echo "ZDOTDIR=$$i"; \
|
||||||
ZDOTDIR=${CURDIR}/$$i cram --shell=zsh -v tests; \
|
ZDOTDIR=${CURDIR}/$$i cram --shell=zsh -v tests || ret=$$?; \
|
||||||
echo; \
|
echo; \
|
||||||
done
|
done; \
|
||||||
|
return $$ret
|
||||||
|
|
||||||
# Define targets for test files, with relative and abolute path.
|
# Define targets for test files, with relative and abolute path.
|
||||||
# Use verbose output, which is useful with Vim's 'errorformat'.
|
# Use verbose output, which is useful with Vim's 'errorformat'.
|
||||||
|
Loading…
Reference in New Issue
Block a user