aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/Makefile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in
index b5954dfc519..a5755fd2259 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -33,6 +33,8 @@ SHELL = @SHELL@
33srcdir = @srcdir@ 33srcdir = @srcdir@
34VPATH = $(srcdir) 34VPATH = $(srcdir)
35 35
36MKDIR_P = @MKDIR_P@
37
36SEPCHAR = @SEPCHAR@ 38SEPCHAR = @SEPCHAR@
37 39
38# We never change directory before running Emacs, so a relative file 40# We never change directory before running Emacs, so a relative file
@@ -110,7 +112,7 @@ endif
110 fi; \ 112 fi; \
111 echo Testing $$loadfile; \ 113 echo Testing $$loadfile; \
112 stat=OK ; \ 114 stat=OK ; \
113 mkdir --parents $(dir $@) ; \ 115 ${MKDIR_P} $(dir $@) ; \
114 $(emacs) -l ert -l $$loadfile \ 116 $(emacs) -l ert -l $$loadfile \
115 --eval "(ert-run-tests-batch-and-exit ${SELECTOR_ACTUAL})" ${WRITE_LOG} 117 --eval "(ert-run-tests-batch-and-exit ${SELECTOR_ACTUAL})" ${WRITE_LOG}
116 118