From: Phillip Lord Date: Tue, 24 Nov 2015 22:25:11 +0000 (+0000) Subject: Exclude manual tests from Makefile X-Git-Tag: emacs-26.0.90~2927^2~1 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=290c4b42e0ce14b9bc929f68fa8d517c83acf177;p=emacs.git Exclude manual tests from Makefile * test/Makefile.in: --- diff --git a/test/Makefile.in b/test/Makefile.in index 3343f729bf6..ee11a0b7a30 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -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=))