]> git.eshelyaron.com Git - emacs.git/commitdiff
Use srcdir when appropriate and not elsewhere.
authorPhillip Lord <phillip.lord@russet.org.uk>
Fri, 6 Nov 2015 22:30:19 +0000 (22:30 +0000)
committerPhillip Lord <phillip.lord@russet.org.uk>
Fri, 6 Nov 2015 22:30:19 +0000 (22:30 +0000)
test/automated/Makefile.in

index 3d4e499984e1166da22866e20b1bca6117a68931..81ae85109ff5b7d9b72134af44aead53bdbe4bc4 100644 (file)
@@ -102,12 +102,7 @@ WRITE_LOG = > $@ 2>&1 || { stat=ERROR; cat $@; }; echo $$stat: $@
 ELFILES = $(sort $(wildcard ${srcdir}/*.el) $(wildcard ${srcdir}/*/*.el) \
        $(wildcard ${srcdir}/*/*/*.el))
 LOGFILES = $(patsubst %.el,%.log,${ELFILES})
-TESTS = ${LOGFILES:.log=}
-
-ping:
-       echo elfiles $(ELFILES)
-       echo logfiles $(LOGFILES)
-       echo tests $(TESTS)
+TESTS = $(subst ${srcdir}/,,$(LOGFILES:.log=))
 
 ## If we have to interrupt a hanging test, preserve the log so we can
 ## see what the problem was.
@@ -118,11 +113,10 @@ ping:
 ## The short aliases that always re-run the tests, with no logging.
 define test_template
 $(1):
-       @test ! -f $(1).log || mv $(1).log $(1).log~
-       @${MAKE} $(1).log WRITE_LOG=
+       @test ! -f ${srcdir}/$(1).log || mv ${srcdir}/$(1).log ${srcdir}/$(1).log~
+       @${MAKE} ${srcdir}/$(1).log WRITE_LOG=
 endef
 
-$(foreach test,${TESTS},$(info $(call test_template,${test})))
 $(foreach test,${TESTS},$(eval $(call test_template,${test})))