mirror of
https://github.com/Tarrasch/zsh-autoenv.git
synced 2024-11-22 15:30:59 +02:00
Makefile: use test by default, improve for \*.t
This commit is contained in:
parent
13c0dbcd2f
commit
58409acda3
16
Makefile
16
Makefile
@ -1,11 +1,17 @@
|
|||||||
.PHONY: itest test
|
.PHONY: itest test
|
||||||
|
|
||||||
|
test:
|
||||||
|
ZDOTDIR="${PWD}/tests" cram --shell=zsh -v tests
|
||||||
|
|
||||||
itest:
|
itest:
|
||||||
ZDOTDIR="${PWD}/tests" cram -i --shell=zsh tests
|
ZDOTDIR="${PWD}/tests" cram -i --shell=zsh tests
|
||||||
|
|
||||||
test:
|
# Define targets for test files, with relative and abolute path.
|
||||||
ZDOTDIR="${PWD}/tests" cram --shell=zsh tests
|
# Use verbose output, which is useful with Vim's 'errorformat'.
|
||||||
|
TESTS:=$(wildcard tests/*.t)
|
||||||
|
|
||||||
tests/*.t:
|
uniq = $(if $1,$(firstword $1) $(call uniq,$(filter-out $(firstword $1),$1)))
|
||||||
ZDOTDIR="${PWD}/tests" cram --shell=zsh $@
|
_TESTS_REL_AND_ABS:=$(call uniq,$(abspath $(TESTS)) $(TESTS))
|
||||||
.PHONY: tests/*.t
|
$(_TESTS_REL_AND_ABS):
|
||||||
|
ZDOTDIR="${PWD}/tests" cram --shell=zsh -v $@
|
||||||
|
.PHONY: $(_TESTS_REL_AND_ABS)
|
||||||
|
Loading…
Reference in New Issue
Block a user