1
0
mirror of https://github.com/Tarrasch/zsh-autoenv.git synced 2024-11-22 15:30:59 +02:00

Makefile: allow to pass in TEST_SHELL (#60)

This commit is contained in:
Daniel Hahler 2017-04-23 14:26:22 +02:00 committed by GitHub
parent 41e0daa35f
commit e4f63b1271

View File

@ -4,20 +4,22 @@ ZDOTDIR:=${CURDIR}/tests/ZDOTDIR
# Export it, and make it absolute. # Export it, and make it absolute.
override export ZDOTDIR:=$(abspath $(ZDOTDIR)) override export ZDOTDIR:=$(abspath $(ZDOTDIR))
TEST_SHELL:=zsh
test: test:
cram --shell=zsh -v tests cram --shell=$(TEST_SHELL) -v tests
itest: itest:
cram -i --shell=zsh tests cram -i --shell=$(TEST_SHELL) tests
# Run tests with all ZDOTDIRs. # Run tests with all ZDOTDIRs.
test_full: test_full:
for zsh in zsh /opt/zsh4/bin/zsh; do \ for zsh in zsh /opt/zsh-4.3.9/bin/zsh; do \
command -v $$zsh || { echo "Skipping non-existing shell: $$zsh"; continue; }; \ command -v $$zsh || { echo "Skipping non-existing shell: $$zsh"; continue; }; \
ret=0; \ ret=0; \
for i in $(wildcard tests/ZDOTDIR*); do \ for i in $(wildcard tests/ZDOTDIR*); do \
echo "zsh=$zsh ZDOTDIR=$$i"; \ echo "zsh=$zsh ZDOTDIR=$$i"; \
SHELL=$$zsh ZDOTDIR=${CURDIR}/$$i cram --shell=zsh -v tests || ret=$$?; \ SHELL=$$zsh ZDOTDIR=${CURDIR}/$$i cram --shell=$$zsh -v tests || ret=$$?; \
echo; \ echo; \
done; \ done; \
done; \ done; \
@ -30,7 +32,7 @@ TESTS:=$(wildcard tests/*.t)
uniq = $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1))) 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:=$(call uniq,$(abspath $(TESTS)) $(TESTS))
$(_TESTS_REL_AND_ABS): $(_TESTS_REL_AND_ABS):
cram --shell=zsh -v $@ cram --shell=$(TEST_SHELL) -v $@
.PHONY: $(_TESTS_REL_AND_ABS) .PHONY: $(_TESTS_REL_AND_ABS)
.PHONY: itest test .PHONY: itest test