diff options
author | Phillip Lord <phillip.lord@russet.org.uk> | 2015-12-02 21:28:56 +0000 |
---|---|---|
committer | Phillip Lord <phillip.lord@russet.org.uk> | 2015-12-02 21:28:56 +0000 |
commit | 354a1fc38d6d4bf93db30c6e3048437dd3fbc19f (patch) | |
tree | 027f7196aac76c71c78ead31559b0d56d2ff7ccd /test/Makefile.in | |
parent | 5874cd46e9cd8b20c61190ad56055d73816c2303 (diff) | |
download | emacs-354a1fc38d6d4bf93db30c6e3048437dd3fbc19f.tar.gz |
make check unconditional, check-maybe top-level.
* Makefile.in: Add check-maybe target.
* test/Makefile.in: Restore unconditional behaviour to make check.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 06a2fb9ce31..1e76675ac76 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -136,7 +136,7 @@ $(foreach test,${TESTS},$(eval $(call test_template,${test}))) ## Re-run all the tests every time. check: - -@for f in *.log; do test ! -f $$f || mv $$f $$f~; done + -@for f in $(LOGFILES); do test ! -f $$f || mv $$f $$f~; done @${MAKE} check-maybe ## Only re-run tests whose .log is older than the test. |