2013-07-23 22:57:17 +00:00
|
|
|
### @configure_input@
|
|
|
|
|
2017-01-01 03:14:01 +00:00
|
|
|
# Copyright (C) 2010-2017 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.
|
2016-02-26 11:55:38 +00:00
|
|
|
## check-maybe: run all tests which are outdated with their .log file
|
|
|
|
## or the source files they are testing.
|
2014-06-28 01:11:04 +00:00
|
|
|
## 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)
|
|
|
|
|
2017-03-31 02:26:58 +00:00
|
|
|
FIND_DELETE = @FIND_DELETE@
|
2016-02-28 03:01:24 +00:00
|
|
|
MKDIR_P = @MKDIR_P@
|
2017-06-13 18:46:03 +00:00
|
|
|
CC = @CC@
|
|
|
|
CFLAGS = @CFLAGS@
|
|
|
|
PROFILING_CFLAGS = @PROFILING_CFLAGS@
|
|
|
|
WARN_CFLAGS = @WARN_CFLAGS@
|
|
|
|
WERROR_CFLAGS = @WERROR_CFLAGS@
|
|
|
|
CPPFLAGS = @CPPFLAGS@
|
|
|
|
SO = @MODULES_SUFFIX@
|
2016-02-28 03:01:24 +00:00
|
|
|
|
2013-11-28 23:50:09 +00:00
|
|
|
SEPCHAR = @SEPCHAR@
|
2013-11-21 00:21:50 +00:00
|
|
|
|
Make "make check" less verbose by default
* test/Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_ELC, am__v_ELC_)
(am__v_ELC_0, am__v_ELC_1, AM_V_GEN, am__v_GEN_, am__v_GEN_0)
(am__v_GEN_1, AM_V_at, am__v_at_, am__v_at_0, am__v_at_1):
New, copied from lisp/Makefile.in.
(%.elc, %.log): Simplify and quieten.
2017-05-30 18:16:35 +00:00
|
|
|
|
|
|
|
# 'make' verbosity.
|
|
|
|
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
|
|
|
|
|
2017-06-13 18:46:03 +00:00
|
|
|
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
|
|
|
|
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
|
|
|
|
am__v_CCLD_0 = @echo " CCLD " $@;
|
|
|
|
am__v_CCLD_1 =
|
|
|
|
|
Make "make check" less verbose by default
* test/Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_ELC, am__v_ELC_)
(am__v_ELC_0, am__v_ELC_1, AM_V_GEN, am__v_GEN_, am__v_GEN_0)
(am__v_GEN_1, AM_V_at, am__v_at_, am__v_at_0, am__v_at_1):
New, copied from lisp/Makefile.in.
(%.elc, %.log): Simplify and quieten.
2017-05-30 18:16:35 +00:00
|
|
|
AM_V_ELC = $(am__v_ELC_@AM_V@)
|
|
|
|
am__v_ELC_ = $(am__v_ELC_@AM_DEFAULT_V@)
|
|
|
|
am__v_ELC_0 = @echo " ELC " $@;
|
|
|
|
am__v_ELC_1 =
|
|
|
|
|
|
|
|
AM_V_GEN = $(am__v_GEN_@AM_V@)
|
|
|
|
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
|
|
|
|
am__v_GEN_0 = @echo " GEN " $@;
|
|
|
|
am__v_GEN_1 =
|
|
|
|
|
|
|
|
AM_V_at = $(am__v_at_@AM_V@)
|
|
|
|
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
|
|
|
|
am__v_at_0 = @
|
|
|
|
am__v_at_1 =
|
|
|
|
|
|
|
|
|
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.
|
2015-11-23 22:08:52 +00:00
|
|
|
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.
|
2017-06-13 22:53:38 +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
|
|
|
|
|
2017-05-31 03:31:18 +00:00
|
|
|
# Whether to run tests from .el files in preference to .elc, we do
|
|
|
|
# this by default since it gives nicer stacktraces.
|
|
|
|
TEST_LOAD_EL ?= yes
|
|
|
|
|
2017-06-14 10:18:36 +00:00
|
|
|
ifeq (@HAVE_MODULES@, yes)
|
|
|
|
MODULES_EMACSOPT := --module-assertions
|
|
|
|
else
|
|
|
|
MODULES_EMACSOPT :=
|
|
|
|
endif
|
|
|
|
|
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.
|
2017-04-22 13:41:39 +00:00
|
|
|
emacs = EMACSLOADPATH= LC_ALL=$(TEST_LOCALE) \
|
|
|
|
EMACS_TEST_DIRECTORY=$(abspath $(srcdir)) \
|
2017-06-14 10:18:36 +00:00
|
|
|
$(GDB) "$(EMACS)" $(MODULES_EMACSOPT) $(EMACSOPT)
|
2011-01-12 16:08:24 +00:00
|
|
|
|
2017-06-13 18:46:03 +00:00
|
|
|
test_module_dir := $(srcdir)/data/emacs-module
|
|
|
|
|
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
|
|
|
|
2016-01-14 08:11:14 +00:00
|
|
|
SELECTOR_DEFAULT = (quote (not (tag :expensive-test)))
|
|
|
|
SELECTOR_EXPENSIVE = nil
|
2016-02-07 18:30:01 +00:00
|
|
|
ifdef SELECTOR
|
|
|
|
SELECTOR_ACTUAL=$(SELECTOR)
|
2016-03-01 09:58:01 +00:00
|
|
|
else ifndef MAKECMDGOALS
|
|
|
|
SELECTOR_ACTUAL=$(SELECTOR_DEFAULT)
|
|
|
|
else ifeq ($(MAKECMDGOALS),all)
|
|
|
|
SELECTOR_ACTUAL=$(SELECTOR_DEFAULT)
|
2016-02-07 18:30:01 +00:00
|
|
|
else ifeq ($(MAKECMDGOALS),check)
|
|
|
|
SELECTOR_ACTUAL=$(SELECTOR_DEFAULT)
|
|
|
|
else ifeq ($(MAKECMDGOALS),check-maybe)
|
2016-01-15 22:11:39 +00:00
|
|
|
SELECTOR_ACTUAL=$(SELECTOR_DEFAULT)
|
|
|
|
else
|
2016-02-07 18:30:01 +00:00
|
|
|
SELECTOR_ACTUAL=$(SELECTOR_EXPENSIVE)
|
2016-01-15 22:11:39 +00:00
|
|
|
endif
|
|
|
|
|
2017-05-31 03:31:18 +00:00
|
|
|
## Byte-compile all test files to test for errors.
|
|
|
|
%.elc: %.el
|
|
|
|
$(AM_V_ELC)$(emacs) -f batch-byte-compile $<
|
|
|
|
|
|
|
|
## Save logs, and show logs for failed tests.
|
2017-07-18 16:53:46 +00:00
|
|
|
WRITE_LOG = $(if $(and ${EMACS_HYDRA_CI}, $(findstring tramp, $@)), |& tee $@, > $@ 2>&1) \
|
2017-07-13 14:40:07 +00:00
|
|
|
|| { STAT=$$?; cat $@; exit $$STAT; }
|
2017-05-31 03:31:18 +00:00
|
|
|
|
|
|
|
ifeq ($(TEST_LOAD_EL), yes)
|
|
|
|
testloadfile = $*.el
|
|
|
|
else
|
|
|
|
testloadfile = $*
|
|
|
|
endif
|
2016-01-15 22:11:39 +00:00
|
|
|
|
2017-05-31 03:31:18 +00:00
|
|
|
%.log: %.elc
|
Make "make check" less verbose by default
* test/Makefile.in (AM_DEFAULT_VERBOSITY, AM_V_ELC, am__v_ELC_)
(am__v_ELC_0, am__v_ELC_1, AM_V_GEN, am__v_GEN_, am__v_GEN_0)
(am__v_GEN_1, AM_V_at, am__v_at_, am__v_at_0, am__v_at_1):
New, copied from lisp/Makefile.in.
(%.elc, %.log): Simplify and quieten.
2017-05-30 18:16:35 +00:00
|
|
|
$(AM_V_at)${MKDIR_P} $(dir $@)
|
2017-06-17 19:48:32 +00:00
|
|
|
$(AM_V_GEN)HOME=/nonexistent $(emacs) -l ert -l $(testloadfile) \
|
2017-07-13 14:40:07 +00:00
|
|
|
--eval "(ert-run-tests-batch-and-exit ${SELECTOR_ACTUAL})" ${WRITE_LOG}
|
2014-06-26 05:47:10 +00:00
|
|
|
|
2017-04-22 13:41:39 +00:00
|
|
|
ifeq (@HAVE_MODULES@, yes)
|
|
|
|
maybe_exclude_module_tests :=
|
|
|
|
else
|
|
|
|
maybe_exclude_module_tests := -name emacs-module-tests.el -prune -o
|
|
|
|
endif
|
|
|
|
|
2017-09-01 22:27:31 +00:00
|
|
|
ELFILES := $(sort $(shell find ${srcdir} -path "${srcdir}/manual" -prune -o \
|
2017-05-10 06:20:52 +00:00
|
|
|
-path "${srcdir}/data" -prune -o \
|
2017-04-22 13:41:39 +00:00
|
|
|
-name "*resources" -prune -o \
|
|
|
|
${maybe_exclude_module_tests} \
|
2017-09-01 22:27:31 +00:00
|
|
|
-name "*.el" ! -name ".*" -print))
|
2017-03-31 02:26:58 +00:00
|
|
|
## .log files may be in a different directory for out of source builds
|
2017-04-01 19:15:03 +00:00
|
|
|
LOGFILES := $(patsubst %.el,%.log, \
|
2017-04-02 20:09:56 +00:00
|
|
|
$(patsubst $(srcdir)/%,%,$(ELFILES)))
|
|
|
|
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
|
|
|
|
|
2017-05-31 16:56:40 +00:00
|
|
|
## Stop make deleting these as intermediate files.
|
2017-06-13 18:46:03 +00:00
|
|
|
.SECONDARY: ${ELFILES:.el=.elc} $(test_module_dir)/*.o
|
2017-05-31 16:56:40 +00:00
|
|
|
|
2014-06-28 01:11:04 +00:00
|
|
|
.PHONY: ${TESTS}
|
|
|
|
|
|
|
|
define test_template
|
2017-04-02 20:09:56 +00:00
|
|
|
## A test FOO-tests depends on the source file with the similar
|
|
|
|
## name, unless FOO itself contains the string '-tests/'.
|
2017-08-22 00:39:10 +00:00
|
|
|
## The similar name is FOO.c if FOO begins with '{lib-,}src/', FOO.el
|
2017-04-02 20:09:56 +00:00
|
|
|
## otherwise. Although this heuristic does not identify all the
|
|
|
|
## dependencies, it is better than nothing.
|
|
|
|
ifeq (,$(patsubst %-tests,,$(1))$(findstring -tests/,$(1)))
|
|
|
|
$(1).log: $(patsubst %-tests,$(srcdir)/../%,$(1))$(if \
|
2017-08-22 00:39:10 +00:00
|
|
|
$(patsubst src/%,,$(patsubst lib-src/%,,$(1))),.el,.c)
|
2017-04-01 19:15:03 +00:00
|
|
|
endif
|
2015-11-27 11:56:18 +00:00
|
|
|
|
2017-04-02 20:09:56 +00:00
|
|
|
## Short aliases that always re-run the tests, with no logging.
|
|
|
|
## Define both with and without the directory name for ease of use.
|
|
|
|
.PHONY: $(1) $(notdir $(1))
|
|
|
|
$(1):
|
|
|
|
@test ! -f $(1).log || mv $(1).log $(1).log~
|
|
|
|
@$(MAKE) $(1).log WRITE_LOG=
|
|
|
|
$(notdir $(1)): $(1)
|
2014-06-28 01:11:04 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(foreach test,${TESTS},$(eval $(call test_template,${test})))
|
|
|
|
|
2017-04-22 13:41:39 +00:00
|
|
|
ifeq (@HAVE_MODULES@, yes)
|
2017-06-13 18:46:03 +00:00
|
|
|
# -fPIC is a no-op on Windows, but causes a compiler warning
|
|
|
|
ifeq ($(SO),.dll)
|
|
|
|
FPIC_CFLAGS =
|
|
|
|
else
|
|
|
|
FPIC_CFLAGS = -fPIC
|
|
|
|
endif
|
|
|
|
|
|
|
|
MODULE_CFLAGS = -I$(srcdir)/../src $(FPIC_CFLAGS) $(PROFILING_CFLAGS) \
|
|
|
|
$(WARN_CFLAGS) $(WERROR_CFLAGS) $(CFLAGS)
|
|
|
|
|
2017-06-13 19:41:56 +00:00
|
|
|
test_module = $(test_module_dir)/mod-test${SO}
|
|
|
|
src/emacs-module-tests.log: $(test_module)
|
|
|
|
$(test_module): $(test_module:${SO}=.c) $(srcdir)/../src/emacs-module.h
|
2017-06-13 18:46:03 +00:00
|
|
|
$(AM_V_CCLD)$(CC) -shared $(CPPFLAGS) $(MODULE_CFLAGS) $(LDFLAGS) \
|
|
|
|
-o $@ $<
|
2017-04-22 13:41:39 +00:00
|
|
|
endif
|
|
|
|
|
2016-05-06 17:09:13 +00:00
|
|
|
## Check that there is no 'automated' subdirectory, which would
|
|
|
|
## indicate an incomplete merge from an older version of Emacs where
|
|
|
|
## the tests were arranged differently.
|
|
|
|
.PHONY: check-no-automated-subdir
|
|
|
|
check-no-automated-subdir:
|
2017-09-01 22:29:49 +00:00
|
|
|
${AM_V_at}test ! -d $(srcdir)/automated
|
2016-05-06 17:09:13 +00:00
|
|
|
|
2016-01-14 08:11:14 +00:00
|
|
|
## Rerun all default tests.
|
2016-05-06 17:09:13 +00:00
|
|
|
check: mostlyclean check-no-automated-subdir
|
2016-01-15 22:11:39 +00:00
|
|
|
@${MAKE} check-doit SELECTOR="${SELECTOR_ACTUAL}"
|
2016-01-12 09:37:06 +00:00
|
|
|
|
2016-01-14 08:11:14 +00:00
|
|
|
## Rerun all default and expensive tests.
|
2016-01-12 09:37:06 +00:00
|
|
|
.PHONY: check-expensive
|
2016-05-06 17:09:13 +00:00
|
|
|
check-expensive: mostlyclean check-no-automated-subdir
|
2016-01-12 09:37:06 +00:00
|
|
|
@${MAKE} check-doit SELECTOR="${SELECTOR_EXPENSIVE}"
|
|
|
|
|
2016-02-26 11:55:38 +00:00
|
|
|
## Re-run all tests which are outdated. A test is outdated if its
|
|
|
|
## logfile is out-of-date with either the test file, or the source
|
2017-04-02 20:09:56 +00:00
|
|
|
## files that the tests depend on. See test_template.
|
2014-06-27 16:27:08 +00:00
|
|
|
.PHONY: check-maybe
|
2016-05-06 17:09:13 +00:00
|
|
|
check-maybe: check-no-automated-subdir
|
2016-01-15 22:11:39 +00:00
|
|
|
@${MAKE} check-doit SELECTOR="${SELECTOR_ACTUAL}"
|
2016-01-14 08:11:14 +00:00
|
|
|
|
|
|
|
## Run the tests.
|
|
|
|
.PHONY: check-doit
|
2017-06-17 19:48:32 +00:00
|
|
|
## We can't put LOGFILES as prerequisites, because that would stop the
|
|
|
|
## summarizing step from running when there is an error.
|
|
|
|
check-doit:
|
|
|
|
-@${MAKE} -k ${LOGFILES}
|
|
|
|
@$(emacs) -l ert -f ert-summarize-tests-batch-and-exit ${LOGFILES}
|
2014-06-26 05:47:10 +00:00
|
|
|
|
|
|
|
.PHONY: mostlyclean clean bootstrap-clean distclean maintainer-clean
|
|
|
|
|
2016-01-14 08:11:14 +00:00
|
|
|
mostlyclean:
|
2016-01-20 10:03:15 +00:00
|
|
|
-@for f in ${LOGFILES}; do test ! -f $$f || mv $$f $$f~; done
|
2016-11-21 00:57:17 +00:00
|
|
|
rm -f *.tmp
|
2016-01-14 08:11:14 +00:00
|
|
|
|
|
|
|
clean:
|
2017-03-31 02:26:58 +00:00
|
|
|
find . '(' -name '*.log' -o -name '*.log~' ')' $(FIND_DELETE)
|
2017-06-13 18:46:03 +00:00
|
|
|
rm -f $(test_module_dir)/*.o $(test_module_dir)/*.so \
|
|
|
|
$(test_module_dir)/*.dll
|
2014-06-26 05:47:10 +00:00
|
|
|
|
|
|
|
bootstrap-clean: clean
|
2017-03-31 02:26:58 +00:00
|
|
|
find $(srcdir) -name '*.elc' $(FIND_DELETE)
|
2014-06-26 05:47:10 +00:00
|
|
|
|
|
|
|
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
|