Exclude manual tests from Makefile
* test/Makefile.in:
This commit is contained in:
parent
6579e5b6bb
commit
290c4b42e0
1 changed files with 3 additions and 2 deletions
|
@ -99,8 +99,9 @@ WRITE_LOG = > $@ 2>&1 || { stat=ERROR; cat $@; }; echo $$stat: $@
|
|||
$(emacs) -l ert -l $$loadfile \
|
||||
-f ert-run-tests-batch-and-exit ${WRITE_LOG}
|
||||
|
||||
ELFILES = $(sort $(wildcard ${srcdir}/*.el) $(wildcard ${srcdir}/*/*.el) \
|
||||
$(wildcard ${srcdir}/*/*/*.el) $(wildcard ${srcdir}/*/*/*/*.el))
|
||||
ELFILES = $(filter-out ./manual%,\
|
||||
$(sort $(wildcard ${srcdir}/*.el) $(wildcard ${srcdir}/*/*.el) \
|
||||
$(wildcard ${srcdir}/*/*/*.el) $(wildcard ${srcdir}/*/*/*/*.el)))
|
||||
LOGFILES = $(patsubst %.el,%.log,${ELFILES})
|
||||
TESTS = $(subst ${srcdir}/,,$(LOGFILES:.log=))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue