zsh-autoenv/Makefile

41 lines
1.1 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
# Make it absolute.
override ZDOTDIR:=$(abspath $(ZDOTDIR))
2013-09-08 19:32:16 +03:00
TEST_SHELL:=zsh
test:
ZDOTDIR=$(ZDOTDIR) cram --shell=$(TEST_SHELL) -v tests
itest:
ZDOTDIR=$(ZDOTDIR) cram -i --shell=$(TEST_SHELL) tests
# Run tests with all ZDOTDIRs.
test_full:
for zsh in zsh /opt/zsh-4.3.9/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; \
exit $$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):
cram --shell=$(TEST_SHELL) -v $@
.PHONY: $(_TESTS_REL_AND_ABS)
.PHONY: itest test
2015-01-26 00:51:41 +02:00
clean:
$(RM) tests/*.err