mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-22 23:40:58 +02:00
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
# Default, can be overridden using "make test ZDOTDIR=...".
|
|
ZDOTDIR:=${CURDIR}/tests/ZDOTDIR
|
|
|
|
# Export it, and make it absolute.
|
|
override export ZDOTDIR:=$(abspath $(ZDOTDIR))
|
|
|
|
TEST_SHELL:=zsh
|
|
|
|
test:
|
|
$(TEST_SHELL) --version
|
|
cram --shell=$(TEST_SHELL) -v tests
|
|
|
|
itest:
|
|
cram -i --shell=$(TEST_SHELL) tests
|
|
|
|
# Run tests with all ZDOTDIRs.
|
|
test_full:
|
|
$(TEST_SHELL) --version
|
|
ret=0; \
|
|
for i in $(wildcard tests/ZDOTDIR*); do \
|
|
echo "== ZDOTDIR=$$i =="; \
|
|
SHELL=$(TEST_SHELL) ZDOTDIR=${CURDIR}/$$i cram --shell=$(TEST_SHELL) -v tests || ret=$$((ret+1)); \
|
|
echo; \
|
|
done; \
|
|
exit $$ret
|
|
|
|
# Define targets for test files, with relative and abolute path.
|
|
# Use verbose output, which is useful with Vim's 'errorformat'.
|
|
TESTS:=$(wildcard tests/*.t)
|
|
|
|
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
|
|
|
|
clean:
|
|
$(RM) tests/*.err
|