2013-07-23 22:57:17 +00:00
|
|
|
### @configure_input@
|
|
|
|
|
2016-01-01 09:16:19 +00:00
|
|
|
# Copyright (C) 2010-2016 Free Software Foundation, Inc.
|
2011-01-12 16:08:24 +00:00
|
|
|
|
|
|
|
# This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
# GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
|
|
|
# GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2014-06-28 01:11:04 +00:00
|
|
|
### Commentary:
|
|
|
|
|
|
|
|
## Some targets:
|
2014-06-28 17:05:00 +00:00
|
|
|
## check: re-run all tests, writing to .log files.
|
2014-06-28 01:11:04 +00:00
|
|
|
## check-maybe: run all tests whose .log file needs updating
|
|
|
|
## filename.log: run tests from filename.el(c) if .log file needs updating
|
2014-06-28 17:05:00 +00:00
|
|
|
## filename: re-run tests from filename.el(c), with no logging
|
2014-06-28 01:11:04 +00:00
|
|
|
|
|
|
|
### Code:
|
|
|
|
|
2013-08-28 06:01:52 +00:00
|
|
|
SHELL = @SHELL@
|
2011-01-12 16:08:24 +00:00
|
|
|
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = $(srcdir)
|
|
|
|
|
2013-11-28 23:50:09 +00:00
|
|
|
SEPCHAR = @SEPCHAR@
|
2013-11-21 00:21:50 +00:00
|
|
|
|
2013-11-02 20:54:08 +00:00
|
|
|
# We never change directory before running Emacs, so a relative file
|
|
|
|
# name is fine, and makes life easier. If we need to change
|
|
|
|
# directory, we can use emacs --chdir.
|
|
|
|
EMACS = ../../src/emacs
|
2011-01-12 16:08:24 +00:00
|
|
|
|
2015-01-18 19:08:13 +00:00
|
|
|
EMACS_EXTRAOPT=
|
|
|
|
|
2011-01-12 16:08:24 +00:00
|
|
|
# Command line flags for Emacs.
|
2013-11-21 00:21:50 +00:00
|
|
|
# Apparently MSYS bash would convert "-L :" to "-L ;" anyway,
|
|
|
|
# but we might as well be explicit.
|
2015-01-18 19:08:13 +00:00
|
|
|
EMACSOPT = -batch --no-site-file --no-site-lisp -L "$(SEPCHAR)$(srcdir)" $(EMACS_EXTRAOPT)
|
2011-01-12 16:08:24 +00:00
|
|
|
|
2014-04-11 06:51:49 +00:00
|
|
|
# Prevent any settings in the user environment causing problems.
|
2014-06-26 05:47:10 +00:00
|
|
|
unexport EMACSDATA EMACSDOC EMACSPATH GREP_OPTIONS
|
2014-04-11 06:51:49 +00:00
|
|
|
|
2014-06-28 17:18:05 +00:00
|
|
|
## To run tests under a debugger, set this to eg: "gdb --args".
|
|
|
|
GDB =
|
|
|
|
|
2015-09-04 05:13:31 +00:00
|
|
|
# The locale to run tests under. Tests should work if this is set to
|
|
|
|
# any supported locale. Use the C locale by default, as it should be
|
|
|
|
# supported everywhere.
|
|
|
|
TEST_LOCALE = C
|
|
|
|
|
2011-01-12 16:08:24 +00:00
|
|
|
# The actual Emacs command run in the targets below.
|
2013-11-04 01:48:08 +00:00
|
|
|
# Prevent any setting of EMACSLOADPATH in user environment causing problems.
|
2015-09-04 05:13:31 +00:00
|
|
|
emacs = EMACSLOADPATH= LC_ALL=$(TEST_LOCALE) EMACS_TEST_DIRECTORY=$(srcdir) \
|
|
|
|
$(GDB) "$(EMACS)" $(EMACSOPT)
|
2011-01-12 16:08:24 +00:00
|
|
|
|
2013-11-02 20:32:22 +00:00
|
|
|
.PHONY: all check
|
2011-01-12 16:08:24 +00:00
|
|
|
|
2013-11-02 20:32:22 +00:00
|
|
|
all: check
|
2011-01-12 16:08:24 +00:00
|
|
|
|
2014-06-26 05:47:10 +00:00
|
|
|
%.elc: %.el
|
2011-01-12 16:08:24 +00:00
|
|
|
@echo Compiling $<
|
2014-06-26 05:47:10 +00:00
|
|
|
@$(emacs) -f batch-byte-compile $<
|
|
|
|
|
|
|
|
## Ignore any test errors so we can continue to test other files.
|
|
|
|
## But compilation errors are always fatal.
|
2015-01-15 18:56:57 +00:00
|
|
|
WRITE_LOG = > $@ 2>&1 || { stat=ERROR; cat $@; }; echo $$stat: $@
|
2014-06-28 17:05:00 +00:00
|
|
|
|
2014-06-26 05:47:10 +00:00
|
|
|
## I'd prefer to use -emacs -f ert-run-tests-batch-and-exit rather
|
|
|
|
## than || true, since the former makes problems more obvious.
|
|
|
|
## I'd also prefer to @-hide the grep part and not the
|
|
|
|
## ert-run-tests-batch-and-exit part.
|
|
|
|
##
|
|
|
|
## We need to use $loadfile because:
|
|
|
|
## i) -L :$srcdir -l basename does not work, because we have files whose
|
|
|
|
## basename duplicates a file in lisp/ (eg eshell.el).
|
|
|
|
## ii) Although -l basename will automatically load .el or .elc,
|
|
|
|
## -l ./basename treats basename as a literal file (it would be nice
|
2014-06-28 17:05:00 +00:00
|
|
|
## to change this; bug#17848 - if that gets done, this can be simplified).
|
2014-06-26 05:47:10 +00:00
|
|
|
##
|
2015-09-16 23:06:29 +00:00
|
|
|
## Beware: it approximates 'no-byte-compile', so watch out for false-positives!
|
2016-01-05 08:47:41 +00:00
|
|
|
SELECTOR_DEFAULT=(quote (not (tag :expensive-test)))
|
2016-01-04 22:28:07 +00:00
|
|
|
SELECTOR_EXPENSIVE=nil
|
2016-01-05 08:47:41 +00:00
|
|
|
SELECTOR=
|
2014-06-26 05:47:10 +00:00
|
|
|
%.log: ${srcdir}/%.el
|
|
|
|
@if grep '^;.*no-byte-compile: t' $< > /dev/null; then \
|
|
|
|
loadfile=$<; \
|
|
|
|
else \
|
|
|
|
loadfile=$<c; \
|
|
|
|
${MAKE} $$loadfile; \
|
|
|
|
fi; \
|
|
|
|
echo Testing $$loadfile; \
|
|
|
|
stat=OK ; \
|
|
|
|
$(emacs) -l ert -l $$loadfile \
|
2016-01-05 08:47:41 +00:00
|
|
|
--eval "(ert-run-tests-batch-and-exit ${SELECTOR})" ${WRITE_LOG}
|
2014-06-26 05:47:10 +00:00
|
|
|
|
2015-06-09 19:24:17 +00:00
|
|
|
ELFILES = $(sort $(wildcard ${srcdir}/*.el))
|
2014-06-26 05:47:10 +00:00
|
|
|
LOGFILES = $(patsubst %.el,%.log,$(notdir ${ELFILES}))
|
2014-06-28 01:11:04 +00:00
|
|
|
TESTS = ${LOGFILES:.log=}
|
2014-06-26 05:47:10 +00:00
|
|
|
|
|
|
|
## If we have to interrupt a hanging test, preserve the log so we can
|
|
|
|
## see what the problem was.
|
|
|
|
.PRECIOUS: %.log
|
|
|
|
|
2014-06-28 01:11:04 +00:00
|
|
|
.PHONY: ${TESTS}
|
|
|
|
|
2014-06-28 17:05:00 +00:00
|
|
|
## The short aliases that always re-run the tests, with no logging.
|
2014-06-28 01:11:04 +00:00
|
|
|
define test_template
|
|
|
|
$(1):
|
|
|
|
@test ! -f $(1).log || mv $(1).log $(1).log~
|
2014-06-28 17:05:00 +00:00
|
|
|
@${MAKE} $(1).log WRITE_LOG=
|
2014-06-28 01:11:04 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach test,${TESTS},$(eval $(call test_template,${test})))
|
|
|
|
|
2016-01-05 08:47:41 +00:00
|
|
|
## Rerun default tests.
|
2014-06-27 16:27:08 +00:00
|
|
|
check:
|
2016-01-05 08:47:41 +00:00
|
|
|
@${MAKE} check-doit SELECTOR="${SELECTOR_DEFAULT}"
|
2014-06-27 16:27:08 +00:00
|
|
|
|
2016-01-04 22:28:07 +00:00
|
|
|
## Rerun also expensive tests.
|
|
|
|
.PHONY: check-expensive
|
|
|
|
check-expensive:
|
2016-01-05 08:47:41 +00:00
|
|
|
@${MAKE} check-doit SELECTOR="${SELECTOR_EXPENSIVE}"
|
|
|
|
|
|
|
|
## Re-run all the tests every time.
|
|
|
|
.PHONY: check-doit
|
|
|
|
check-doit:
|
|
|
|
-@for f in *.log; do test ! -f $$f || mv $$f $$f~; done
|
|
|
|
@${MAKE} check-maybe
|
2016-01-04 22:28:07 +00:00
|
|
|
|
2014-06-27 16:27:08 +00:00
|
|
|
## Only re-run tests whose .log is older than the test.
|
|
|
|
.PHONY: check-maybe
|
|
|
|
check-maybe: ${LOGFILES}
|
2014-06-26 05:47:10 +00:00
|
|
|
$(emacs) -l ert -f ert-summarize-tests-batch-and-exit $^
|
|
|
|
|
|
|
|
.PHONY: mostlyclean clean bootstrap-clean distclean maintainer-clean
|
|
|
|
|
|
|
|
clean mostlyclean:
|
2014-06-27 16:27:08 +00:00
|
|
|
-rm -f *.log *.log~
|
2014-06-26 05:47:10 +00:00
|
|
|
|
|
|
|
bootstrap-clean: clean
|
|
|
|
-rm -f ${srcdir}/*.elc
|
|
|
|
|
|
|
|
distclean: clean
|
2013-11-02 19:56:54 +00:00
|
|
|
rm -f Makefile
|
2011-01-12 16:08:24 +00:00
|
|
|
|
|
|
|
maintainer-clean: distclean bootstrap-clean
|
|
|
|
|
|
|
|
# Makefile ends here.
|