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/>.
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
34 abs_top_srcdir
=@abs_top_srcdir@
37 FIND_DELETE
= @FIND_DELETE@
41 PROFILING_CFLAGS
= @PROFILING_CFLAGS@
42 WARN_CFLAGS
= @WARN_CFLAGS@
43 WERROR_CFLAGS
= @WERROR_CFLAGS@
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 " $@
;
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 " $@
;
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 " $@
;
68 AM_V_at
= $(am__v_at_@AM_V@
)
69 am__v_at_
= $(am__v_at_@AM_DEFAULT_V@
)
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.
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".
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.
97 # Whether to run tests from .el files in preference to .elc, we do
98 # this by default since it gives nicer stacktraces.
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},)
108 ert_opts
= --eval
'(setq ert-batch-backtrace-right-margin ${TEST_BACKTRACE_LINE_LENGTH})'
111 ifeq (@HAVE_MODULES@
, yes
)
112 MODULES_EMACSOPT
:= --module-assertions
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
:= data
/emacs-module
129 SELECTOR_DEFAULT
= (quote
(not
(or
(tag
:expensive-test
) (tag
:unstable
))))
130 SELECTOR_EXPENSIVE
= (quote
(not
(tag
:unstable
)))
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
)
143 SELECTOR_ACTUAL
=$(SELECTOR_EXPENSIVE
)
146 ## Byte-compile all test files to test for errors.
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; }
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
$@
159 ifeq ($(TEST_LOAD_EL
), yes
)
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
:=
174 maybe_exclude_module_tests
:= -name emacs-module-tests.el
-prune
-o
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.
191 ## Stop make deleting these as intermediate files.
192 .SECONDARY
: ${ELFILES
:.el
=.elc
} $(test_module_dir
)/*.o
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
)
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))
211 @
test ! -f
$(1).log || mv
$(1).log
$(1).log~
212 @
$(MAKE
) $(1).log WRITE_LOG
=
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
226 MODULE_CFLAGS
= -I..
/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_at
)${MKDIR_P} $(dir $@
)
233 $(AM_V_CCLD
)$(CC
) -shared
$(CPPFLAGS
) $(MODULE_CFLAGS
) $(LDFLAGS
) \
237 ## Check that there is no 'automated' subdirectory, which would
238 ## indicate an incomplete merge from an older version of Emacs where
239 ## the tests were arranged differently.
240 .PHONY
: check-no-automated-subdir
241 check-no-automated-subdir
:
242 ${AM_V_at}test ! -d
$(srcdir)/automated
244 ## Rerun all default tests.
245 check: mostlyclean check-no-automated-subdir
246 @
${MAKE} check-doit SELECTOR
="${SELECTOR_ACTUAL}"
248 ## Rerun all default and expensive tests.
249 .PHONY
: check-expensive
250 check-expensive
: mostlyclean check-no-automated-subdir
251 @
${MAKE} check-doit SELECTOR
="${SELECTOR_EXPENSIVE}"
253 ## Run all tests, regardless of tag.
255 check-all
: mostlyclean check-no-automated-subdir
256 @
${MAKE} check-doit SELECTOR
="${SELECTOR_ALL}"
258 ## Re-run all tests which are outdated. A test is outdated if its
259 ## logfile is out-of-date with either the test file, or the source
260 ## files that the tests depend on. See test_template.
262 check-maybe
: check-no-automated-subdir
263 @
${MAKE} check-doit SELECTOR
="${SELECTOR_ACTUAL}"
267 ## We can't put LOGFILES as prerequisites, because that would stop the
268 ## summarizing step from running when there is an error.
270 -@
${MAKE} -k
${LOGFILES}
271 @
$(emacs
) -l ert
-f ert-summarize-tests-batch-and-exit
${LOGFILES}
273 .PHONY
: mostlyclean clean bootstrap-clean
distclean maintainer-clean
276 -@for f in
${LOGFILES}; do
test ! -f
$$f || mv
$$f $$f~
; done
280 find .
'(' -name
'*.log' -o
-name
'*.log~' ')' $(FIND_DELETE
)
281 rm -f
$(test_module_dir
)/*.o
$(test_module_dir
)/*.so \
282 $(test_module_dir
)/*.dll
284 bootstrap-clean
: clean
285 find
$(srcdir) -name
'*.elc' $(FIND_DELETE
)
290 maintainer-clean
: distclean bootstrap-clean