Add isearch-yank-symbol-or-char
[emacs.git] / test / Makefile.in
blob1653263e7a41b8dbe96705f3602415238166bc68
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 # If you just want a pass/fail, setting this to no is much faster.
100 TEST_LOAD_EL ?= yes
102 # Maximum length of lines in ert backtraces; nil for no limit.
103 # (if empty, use the default ert-batch-backtrace-right-margin).
104 TEST_BACKTRACE_LINE_LENGTH =
106 ifeq (${TEST_BACKTRACE_LINE_LENGTH},)
107 ert_opts =
108 else
109 ert_opts = --eval '(setq ert-batch-backtrace-right-margin ${TEST_BACKTRACE_LINE_LENGTH})'
110 endif
112 ifeq (@HAVE_MODULES@, yes)
113 MODULES_EMACSOPT := --module-assertions
114 else
115 MODULES_EMACSOPT :=
116 endif
118 # The actual Emacs command run in the targets below.
119 # Prevent any setting of EMACSLOADPATH in user environment causing problems.
120 emacs = EMACSLOADPATH= LC_ALL=$(TEST_LOCALE) \
121 EMACS_TEST_DIRECTORY=$(abspath $(srcdir)) \
122 $(GDB) "$(EMACS)" $(MODULES_EMACSOPT) $(EMACSOPT)
124 test_module_dir := data/emacs-module
126 .PHONY: all check
128 all: check
130 SELECTOR_DEFAULT = (quote (not (or (tag :expensive-test) (tag :unstable))))
131 SELECTOR_EXPENSIVE = (quote (not (tag :unstable)))
132 SELECTOR_ALL = nil
133 ifdef SELECTOR
134 SELECTOR_ACTUAL=$(SELECTOR)
135 else ifndef MAKECMDGOALS
136 SELECTOR_ACTUAL=$(SELECTOR_DEFAULT)
137 else ifeq ($(MAKECMDGOALS),all)
138 SELECTOR_ACTUAL=$(SELECTOR_DEFAULT)
139 else ifeq ($(MAKECMDGOALS),check)
140 SELECTOR_ACTUAL=$(SELECTOR_DEFAULT)
141 else ifeq ($(MAKECMDGOALS),check-maybe)
142 SELECTOR_ACTUAL=$(SELECTOR_DEFAULT)
143 else
144 SELECTOR_ACTUAL=$(SELECTOR_EXPENSIVE)
145 endif
147 ## Byte-compile all test files to test for errors.
148 %.elc: %.el
149 $(AM_V_ELC)$(emacs) -f batch-byte-compile $<
151 ## Save logs, and show logs for failed tests.
152 WRITE_LOG = > $@ 2>&1 || { STAT=$$?; cat $@; exit $$STAT; }
153 ifdef EMACS_HYDRA_CI
154 ## On Hydra, always show logs for certain problematic tests.
155 lisp/emacs-lisp/eieio-tests/eieio-tests.log \
156 lisp/net/tramp-tests.log \
157 : WRITE_LOG = 2>&1 | tee $@
158 endif
160 ifeq ($(TEST_LOAD_EL), yes)
161 testloadfile = $*.el
162 else
163 testloadfile = $*
164 endif
166 %.log: %.elc
167 $(AM_V_at)${MKDIR_P} $(dir $@)
168 $(AM_V_GEN)HOME=/nonexistent $(emacs) \
169 -l ert ${ert_opts} -l $(testloadfile) \
170 --eval "(ert-run-tests-batch-and-exit ${SELECTOR_ACTUAL})" ${WRITE_LOG}
172 ifeq (@HAVE_MODULES@, yes)
173 maybe_exclude_module_tests :=
174 else
175 maybe_exclude_module_tests := -name emacs-module-tests.el -prune -o
176 endif
178 ## To speed up parallel builds, put these slow test files (which can
179 ## take longer than all the rest combined) at the start of the list.
180 SLOW_TESTS = ${srcdir}/lisp/net/tramp-tests.el
182 ELFILES := $(sort $(shell find ${srcdir} -path "${srcdir}/manual" -prune -o \
183 -path "${srcdir}/data" -prune -o \
184 -name "*resources" -prune -o \
185 ${maybe_exclude_module_tests} \
186 -name "*.el" ! -name ".*" -print))
188 $(foreach slow,${SLOW_TESTS},$(eval ELFILES:= ${slow} $(filter-out ${slow},${ELFILES})))
190 ## .log files may be in a different directory for out of source builds
191 LOGFILES := $(patsubst %.el,%.log, \
192 $(patsubst $(srcdir)/%,%,$(ELFILES)))
193 TESTS := $(LOGFILES:.log=)
195 ## If we have to interrupt a hanging test, preserve the log so we can
196 ## see what the problem was.
197 .PRECIOUS: %.log
199 ## Stop make deleting these as intermediate files.
200 .SECONDARY: ${ELFILES:.el=.elc} $(test_module_dir)/*.o
202 .PHONY: ${TESTS}
204 define test_template
205 ## A test FOO-tests depends on the source file with the similar
206 ## name, unless FOO itself contains the string '-tests/'.
207 ## The similar name is FOO.c if FOO begins with '{lib-,}src/', FOO.el
208 ## otherwise. Although this heuristic does not identify all the
209 ## dependencies, it is better than nothing.
210 ifeq (,$(patsubst %-tests,,$(1))$(findstring -tests/,$(1)))
211 $(1).log: $(patsubst %-tests,$(srcdir)/../%,$(1))$(if \
212 $(patsubst src/%,,$(patsubst lib-src/%,,$(1))),.el,.c)
213 endif
215 ## Short aliases that always re-run the tests, with no logging.
216 ## Define both with and without the directory name for ease of use.
217 .PHONY: $(1) $(notdir $(1))
218 $(1):
219 @test ! -f $(1).log || mv $(1).log $(1).log~
220 @$(MAKE) $(1).log WRITE_LOG=
221 $(notdir $(1)): $(1)
222 endef
224 $(foreach test,${TESTS},$(eval $(call test_template,${test})))
226 ifeq (@HAVE_MODULES@, yes)
227 # -fPIC is a no-op on Windows, but causes a compiler warning
228 ifeq ($(SO),.dll)
229 FPIC_CFLAGS =
230 else
231 FPIC_CFLAGS = -fPIC
232 endif
234 MODULE_CFLAGS = -I../src $(FPIC_CFLAGS) $(PROFILING_CFLAGS) \
235 $(WARN_CFLAGS) $(WERROR_CFLAGS) $(CFLAGS)
237 test_module = $(test_module_dir)/mod-test${SO}
238 src/emacs-module-tests.log: $(test_module)
239 $(test_module): $(test_module:${SO}=.c) $(srcdir)/../src/emacs-module.h
240 $(AM_V_at)${MKDIR_P} $(dir $@)
241 $(AM_V_CCLD)$(CC) -shared $(CPPFLAGS) $(MODULE_CFLAGS) $(LDFLAGS) \
242 -o $@ $<
243 endif
245 ## Check that there is no 'automated' subdirectory, which would
246 ## indicate an incomplete merge from an older version of Emacs where
247 ## the tests were arranged differently.
248 .PHONY: check-no-automated-subdir
249 check-no-automated-subdir:
250 ${AM_V_at}test ! -d $(srcdir)/automated
252 ## Rerun all default tests.
253 check: mostlyclean check-no-automated-subdir
254 @${MAKE} check-doit SELECTOR="${SELECTOR_ACTUAL}"
256 ## Rerun all default and expensive tests.
257 .PHONY: check-expensive
258 check-expensive: mostlyclean check-no-automated-subdir
259 @${MAKE} check-doit SELECTOR="${SELECTOR_EXPENSIVE}"
261 ## Run all tests, regardless of tag.
262 .PHONY: check-all
263 check-all: mostlyclean check-no-automated-subdir
264 @${MAKE} check-doit SELECTOR="${SELECTOR_ALL}"
266 ## Re-run all tests which are outdated. A test is outdated if its
267 ## logfile is out-of-date with either the test file, or the source
268 ## files that the tests depend on. See test_template.
269 .PHONY: check-maybe
270 check-maybe: check-no-automated-subdir
271 @${MAKE} check-doit SELECTOR="${SELECTOR_ACTUAL}"
273 ## Run the tests.
274 .PHONY: check-doit
275 ## We can't put LOGFILES as prerequisites, because that would stop the
276 ## summarizing step from running when there is an error.
277 check-doit:
278 -@${MAKE} -k ${LOGFILES}
279 @$(emacs) -l ert -f ert-summarize-tests-batch-and-exit ${LOGFILES}
281 .PHONY: mostlyclean clean bootstrap-clean distclean maintainer-clean
283 mostlyclean:
284 -@for f in ${LOGFILES}; do test ! -f $$f || mv $$f $$f~; done
285 rm -f *.tmp
287 clean:
288 find . '(' -name '*.log' -o -name '*.log~' ')' $(FIND_DELETE)
289 rm -f $(test_module_dir)/*.o $(test_module_dir)/*.so \
290 $(test_module_dir)/*.dll
292 bootstrap-clean: clean
293 find $(srcdir) -name '*.elc' $(FIND_DELETE)
295 distclean: clean
296 rm -f Makefile
298 maintainer-clean: distclean bootstrap-clean