diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2018-03-16 16:19:10 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2018-03-16 16:19:10 +0100 |
commit | 2d0853f62ac65f974f25887f69506bfe923bf14b (patch) | |
tree | b80912e37a773b3e530f852e087b958e0fae24b2 /test/Makefile.in | |
parent | a402d9aacbecf4bf0b9afde592a3b90c71f96832 (diff) | |
download | emacs-2d0853f62ac65f974f25887f69506bfe923bf14b.tar.gz |
Optimize "make check" and "make check-maybe"
* lisp/emacs-lisp/ert.el (ert-run-tests-batch): Print summary duration.
* test/Makefile.in (TEST_LOAD_EL): Set default to "no" for
targets all, check, and check-maybe. (Bug#30807)
* test/README: Reflect recent changes in Makefile.
* test/lisp/net/tramp-archive-tests.el
(tramp-archive-test99-libarchive-tests): Tag it :unstable.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 0b6f8c2eecf..426d22d0632 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -97,7 +97,8 @@ TEST_LOCALE = C # Whether to run tests from .el files in preference to .elc, we do # this by default since it gives nicer stacktraces. # If you just want a pass/fail, setting this to no is much faster. -TEST_LOAD_EL ?= yes +export TEST_LOAD_EL ?= \ + $(if $(findstring $(MAKECMDGOALS), all check check-maybe),no,yes) # Additional settings for ert. ert_opts = |