Merge from origin/emacs-26
[emacs.git] / test / Makefile.in
blob3f4f8e7836c6098afbcef45ca5d9f709057a99df
1 ### @configure_input@
3 # Copyright (C) 2010-2018 Free Software Foundation, Inc.
5 # This file is part of GNU Emacs.
7 # GNU Emacs is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # GNU Emacs is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
20 ### Commentary:
22 ## Some targets:
23 ## check: re-run all tests, writing to .log files.
24 ## check-maybe: run all tests which are outdated with their .log file
25 ## or the source files they are testing.
26 ## filename.log: run tests from filename.el(c) if .log file needs updating
27 ## filename: re-run tests from filename.el(c), with no logging
29 ### Code:
31 SHELL = @SHELL@
33 srcdir = @srcdir@
34 abs_top_srcdir=@abs_top_srcdir@
35 VPATH = $(srcdir)
37 FIND_DELETE = @FIND_DELETE@
38 MKDIR_P = @MKDIR_P@
39 CC = @CC@
40 CFLAGS = @CFLAGS@
41 PROFILING_CFLAGS = @PROFILING_CFLAGS@
42 WARN_CFLAGS = @WARN_CFLAGS@
43 WERROR_CFLAGS = @WERROR_CFLAGS@
44 CPPFLAGS = @CPPFLAGS@
45 SO = @MODULES_SUFFIX@
47 SEPCHAR = @SEPCHAR@
50 # 'make' verbosity.
51 AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
53 AM_V_CCLD = $(am__v_CCLD_@AM_V@)
54 am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
55 am__v_CCLD_0 = @echo " CCLD " $@;
56 am__v_CCLD_1 =
58 AM_V_ELC = $(am__v_ELC_@AM_V@)
59 am__v_ELC_ = $(am__v_ELC_@AM_DEFAULT_V@)
60 am__v_ELC_0 = @echo " ELC " $@;
61 am__v_ELC_1 =
63 AM_V_GEN = $(am__v_GEN_@AM_V@)
64 am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
65 am__v_GEN_0 = @echo " GEN " $@;
66 am__v_GEN_1 =
68 AM_V_at = $(am__v_at_@AM_V@)
69 am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
70 am__v_at_0 = @
71 am__v_at_1 =
74 # We never change directory before running Emacs, so a relative file
75 # name is fine, and makes life easier. If we need to change
76 # directory, we can use emacs --chdir.
77 EMACS = ../src/emacs
79 EMACS_EXTRAOPT=
81 # Command line flags for Emacs.
82 # Apparently MSYS bash would convert "-L :" to "-L ;" anyway,
83 # but we might as well be explicit.
84 EMACSOPT = -batch --no-site-file --no-site-lisp -L "$(SEPCHAR)$(srcdir)" $(EMACS_EXTRAOPT)
86 # Prevent any settings in the user environment causing problems.
87 unexport EMACSDATA EMACSDOC EMACSPATH GREP_OPTIONS
89 ## To run tests under a debugger, set this to eg: "gdb --args".
90 GDB =
92 # The locale to run tests under. Tests should work if this is set to
93 # any supported locale. Use the C locale by default, as it should be
94 # supported everywhere.
95 TEST_LOCALE = C
97 # Whether to run tests from .el files in preference to .elc, we do
98 # this by default since it gives nicer stacktraces.
99 TEST_LOAD_EL ?= yes
101 # Maximum length of lines in ert backtraces; nil for no limit.
102 # (if empty, use the default ert-batch-backtrace-right-margin).
103 TEST_BACKTRACE_LINE_LENGTH =
105 ifeq (${TEST_BACKTRACE_LINE_LENGTH},)
106 ert_opts =
107 else
108 ert_opts = --eval '(setq ert-batch-backtrace-right-margin ${TEST_BACKTRACE_LINE_LENGTH})'
109 endif
111 ifeq (@HAVE_MODULES@, yes)
112 MODULES_EMACSOPT := --module-assertions
113 else
114 MODULES_EMACSOPT :=
115 endif
117 # The actual Emacs command run in the targets below.
118 # Prevent any setting of EMACSLOADPATH in user environment causing problems.
119 emacs = EMACSLOADPATH= LC_ALL=$(TEST_LOCALE) \
120 EMACS_TEST_DIRECTORY=$(abspath $(srcdir)) \
121 $(GDB) "$(EMACS)" $(MODULES_EMACSOPT) $(EMACSOPT)
123 test_module_dir := $(srcdir)/data/emacs-module
125 .PHONY: all check
127 all: check
129 SELECTOR_DEFAULT = (quote (not (or (tag :expensive-test) (tag :unstable))))
130 SELECTOR_EXPENSIVE = (quote (not (tag :unstable)))
131 SELECTOR_ALL = nil
132 ifdef SELECTOR
133 SELECTOR_ACTUAL=$(SELECTOR)
134 else ifndef MAKECMDGOALS
135 SELECTOR_ACTUAL=$(SELECTOR_DEFAULT)
136 else ifeq ($(MAKECMDGOALS),all)
137 SELECTOR_ACTUAL=$(SELECTOR_DEFAULT)
138 else ifeq ($(MAKECMDGOALS),check)
139 SELECTOR_ACTUAL=$(SELECTOR_DEFAULT)
140 else ifeq ($(MAKECMDGOALS),check-maybe)
141 SELECTOR_ACTUAL=$(SELECTOR_DEFAULT)
142 else
143 SELECTOR_ACTUAL=$(SELECTOR_EXPENSIVE)
144 endif
146 ## Byte-compile all test files to test for errors.
147 %.elc: %.el
148 $(AM_V_ELC)$(emacs) -f batch-byte-compile $<
150 ## Save logs, and show logs for failed tests.
151 WRITE_LOG = > $@ 2>&1 || { STAT=$$?; cat $@; exit $$STAT; }
152 ifdef EMACS_HYDRA_CI
153 ## On Hydra, always show logs for certain problematic tests.
154 lisp/emacs-lisp/eieio-tests/eieio-tests.log \
155 lisp/net/tramp-tests.log \
156 : WRITE_LOG = 2>&1 | tee $@
157 endif
159 ifeq ($(TEST_LOAD_EL), yes)
160 testloadfile = $*.el
161 else
162 testloadfile = $*
163 endif
165 %.log: %.elc
166 $(AM_V_at)${MKDIR_P} $(dir $@)
167 $(AM_V_GEN)HOME=/nonexistent $(emacs) \
168 -l ert ${ert_opts} -l $(testloadfile) \
169 --eval "(ert-run-tests-batch-and-exit ${SELECTOR_ACTUAL})" ${WRITE_LOG}
171 ifeq (@HAVE_MODULES@, yes)
172 maybe_exclude_module_tests :=
173 else
174 maybe_exclude_module_tests := -name emacs-module-tests.el -prune -o
175 endif
177 ELFILES := $(sort $(shell find ${srcdir} -path "${srcdir}/manual" -prune -o \
178 -path "${srcdir}/data" -prune -o \
179 -name "*resources" -prune -o \
180 ${maybe_exclude_module_tests} \
181 -name "*.el" ! -name ".*" -print))
182 ## .log files may be in a different directory for out of source builds
183 LOGFILES := $(patsubst %.el,%.log, \
184 $(patsubst $(srcdir)/%,%,$(ELFILES)))
185 TESTS := $(LOGFILES:.log=)
187 ## If we have to interrupt a hanging test, preserve the log so we can
188 ## see what the problem was.
189 .PRECIOUS: %.log
191 ## Stop make deleting these as intermediate files.
192 .SECONDARY: ${ELFILES:.el=.elc} $(test_module_dir)/*.o
194 .PHONY: ${TESTS}
196 define test_template
197 ## A test FOO-tests depends on the source file with the similar
198 ## name, unless FOO itself contains the string '-tests/'.
199 ## The similar name is FOO.c if FOO begins with '{lib-,}src/', FOO.el
200 ## otherwise. Although this heuristic does not identify all the
201 ## dependencies, it is better than nothing.
202 ifeq (,$(patsubst %-tests,,$(1))$(findstring -tests/,$(1)))
203 $(1).log: $(patsubst %-tests,$(srcdir)/../%,$(1))$(if \
204 $(patsubst src/%,,$(patsubst lib-src/%,,$(1))),.el,.c)
205 endif
207 ## Short aliases that always re-run the tests, with no logging.
208 ## Define both with and without the directory name for ease of use.
209 .PHONY: $(1) $(notdir $(1))
210 $(1):
211 @test ! -f $(1).log || mv $(1).log $(1).log~
212 @$(MAKE) $(1).log WRITE_LOG=
213 $(notdir $(1)): $(1)
214 endef
216 $(foreach test,${TESTS},$(eval $(call test_template,${test})))
218 ifeq (@HAVE_MODULES@, yes)
219 # -fPIC is a no-op on Windows, but causes a compiler warning
220 ifeq ($(SO),.dll)
221 FPIC_CFLAGS =
222 else
223 FPIC_CFLAGS = -fPIC
224 endif
226 MODULE_CFLAGS = -I$(srcdir)/../src $(FPIC_CFLAGS) $(PROFILING_CFLAGS) \
227 $(WARN_CFLAGS) $(WERROR_CFLAGS) $(CFLAGS)
229 test_module = $(test_module_dir)/mod-test${SO}
230 src/emacs-module-tests.log: $(test_module)
231 $(test_module): $(test_module:${SO}=.c) $(srcdir)/../src/emacs-module.h
232 $(AM_V_CCLD)$(CC) -shared $(CPPFLAGS) $(MODULE_CFLAGS) $(LDFLAGS) \
233 -o $@ $<
234 endif
236 ## Check that there is no 'automated' subdirectory, which would
237 ## indicate an incomplete merge from an older version of Emacs where
238 ## the tests were arranged differently.
239 .PHONY: check-no-automated-subdir
240 check-no-automated-subdir:
241 ${AM_V_at}test ! -d $(srcdir)/automated
243 ## Rerun all default tests.
244 check: mostlyclean check-no-automated-subdir
245 @${MAKE} check-doit SELECTOR="${SELECTOR_ACTUAL}"
247 ## Rerun all default and expensive tests.
248 .PHONY: check-expensive
249 check-expensive: mostlyclean check-no-automated-subdir
250 @${MAKE} check-doit SELECTOR="${SELECTOR_EXPENSIVE}"
252 ## Run all tests, regardless of tag.
253 .PHONY: check-all
254 check-all: mostlyclean check-no-automated-subdir
255 @${MAKE} check-doit SELECTOR="${SELECTOR_ALL}"
257 ## Re-run all tests which are outdated. A test is outdated if its
258 ## logfile is out-of-date with either the test file, or the source
259 ## files that the tests depend on. See test_template.
260 .PHONY: check-maybe
261 check-maybe: check-no-automated-subdir
262 @${MAKE} check-doit SELECTOR="${SELECTOR_ACTUAL}"
264 ## Run the tests.
265 .PHONY: check-doit
266 ## We can't put LOGFILES as prerequisites, because that would stop the
267 ## summarizing step from running when there is an error.
268 check-doit:
269 -@${MAKE} -k ${LOGFILES}
270 @$(emacs) -l ert -f ert-summarize-tests-batch-and-exit ${LOGFILES}
272 .PHONY: mostlyclean clean bootstrap-clean distclean maintainer-clean
274 mostlyclean:
275 -@for f in ${LOGFILES}; do test ! -f $$f || mv $$f $$f~; done
276 rm -f *.tmp
278 clean:
279 find . '(' -name '*.log' -o -name '*.log~' ')' $(FIND_DELETE)
280 rm -f $(test_module_dir)/*.o $(test_module_dir)/*.so \
281 $(test_module_dir)/*.dll
283 bootstrap-clean: clean
284 find $(srcdir) -name '*.elc' $(FIND_DELETE)
286 distclean: clean
287 rm -f Makefile
289 maintainer-clean: distclean bootstrap-clean