zsh-autoenv/Makefile

40 lines
1.0 KiB
Makefile
Raw Normal View History

2015-01-25 20:16:30 +02:00
# Default, can be overridden using "make test ZDOTDIR=...".
ZDOTDIR:=${CURDIR}/tests/ZDOTDIR
# Export it, and make it absolute.
override export ZDOTDIR:=$(abspath $(ZDOTDIR))
2013-09-08 19:32:16 +03:00
test:
cram --shell=zsh -v tests
itest:
cram -i --shell=zsh tests
# Run tests with all ZDOTDIRs.
test_full:
for zsh in zsh /opt/zsh4/bin/zsh; do \
command -v $$zsh || { echo "Skipping non-existing shell: $$zsh"; continue; }; \
ret=0; \
for i in $(wildcard tests/ZDOTDIR*); do \
echo "zsh=$zsh ZDOTDIR=$$i"; \
SHELL=$$zsh ZDOTDIR=${CURDIR}/$$i cram --shell=zsh -v tests || ret=$$?; \
echo; \
done; \
done; \
return $$ret
2013-09-08 19:32:16 +03:00
# Define targets for test files, with relative and abolute path.
# Use verbose output, which is useful with Vim's 'errorformat'.
TESTS:=$(wildcard tests/*.t)
2014-11-24 19:05:31 +02:00
uniq = $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1)))
_TESTS_REL_AND_ABS:=$(call uniq,$(abspath $(TESTS)) $(TESTS))
$(_TESTS_REL_AND_ABS):
2015-01-19 19:54:41 +02:00
cram --shell=zsh -v $@
.PHONY: $(_TESTS_REL_AND_ABS)
.PHONY: itest test
2015-01-26 00:51:41 +02:00
clean:
$(RM) tests/*.err