diff options
| -rw-r--r-- | test/Makefile.in | 10 |
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 | |||
| 144 | testloadfile = $* | 144 | testloadfile = $* |
| 145 | endif | 145 | endif |
| 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 | ||
| 153 | ifeq (@HAVE_MODULES@, yes) | 152 | ifeq (@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 |
| 243 | check-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. |
| 244 | check-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 | ||