aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorNoam Postavsky2017-06-17 15:48:32 -0400
committerNoam Postavsky2017-06-17 17:45:17 -0400
commit4caa8d4de4cc9c84b2d49a75f24c1626aa3c3f73 (patch)
tree081a1a9f24805db95a29314ce3c9f53143b04747 /test
parentc66a7cce17ac4b9cde6bf49232aaa59c1c73404e (diff)
downloademacs-4caa8d4de4cc9c84b2d49a75f24c1626aa3c3f73.tar.gz
emacs-4caa8d4de4cc9c84b2d49a75f24c1626aa3c3f73.zip
* test/Makefile.in: Don't suppress test failure for single tests.
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.in10
1 files changed, 6 insertions, 4 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index 67bb7ac2eea..414eca90564 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -144,10 +144,9 @@ else
144testloadfile = $* 144testloadfile = $*
145endif 145endif
146 146
147## Ignore any test errors so we can continue to test other files.
148%.log: %.elc 147%.log: %.elc
149 $(AM_V_at)${MKDIR_P} $(dir $@) 148 $(AM_V_at)${MKDIR_P} $(dir $@)
150 -$(AM_V_GEN)HOME=/nonexistent $(emacs) -l ert -l $(testloadfile) \ 149 $(AM_V_GEN)HOME=/nonexistent $(emacs) -l ert -l $(testloadfile) \
151 --eval "(ert-run-tests-batch-and-exit ${SELECTOR_ACTUAL})" ${WRITE_LOG} 150 --eval "(ert-run-tests-batch-and-exit ${SELECTOR_ACTUAL})" ${WRITE_LOG}
152 151
153ifeq (@HAVE_MODULES@, yes) 152ifeq (@HAVE_MODULES@, yes)
@@ -240,8 +239,11 @@ check-maybe: check-no-automated-subdir
240 239
241## Run the tests. 240## Run the tests.
242.PHONY: check-doit 241.PHONY: check-doit
243check-doit: ${LOGFILES} 242## We can't put LOGFILES as prerequisites, because that would stop the
244 @$(emacs) -l ert -f ert-summarize-tests-batch-and-exit $^ 243## summarizing step from running when there is an error.
244check-doit:
245 -@${MAKE} -k ${LOGFILES}
246 @$(emacs) -l ert -f ert-summarize-tests-batch-and-exit ${LOGFILES}
245 247
246.PHONY: mostlyclean clean bootstrap-clean distclean maintainer-clean 248.PHONY: mostlyclean clean bootstrap-clean distclean maintainer-clean
247 249