From: Phillip Lord Date: Mon, 27 Jun 2016 20:36:44 +0000 (+0100) Subject: Run tests from non-byte compiled files X-Git-Tag: emacs-26.0.90~1840^2~107 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1efb208032164d21d2feb8c62b445878d3f5141c;p=emacs.git Run tests from non-byte compiled files * test/Makefile.in: Eval non-byte-compiled files for tests. --- diff --git a/test/Makefile.in b/test/Makefile.in index 7ebc0ded4e7..33e625fc996 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -106,14 +106,17 @@ else SELECTOR_ACTUAL=$(SELECTOR_EXPENSIVE) endif +## Byte-compile all test files to test for errors (unless explicitly +## told not to), but then evaluate the un-byte-compiled files, because +## they give cleaner stacktraces. +## Beware: it approximates 'no-byte-compile', so watch out for false-positives! %.log: %.el - @if grep '^;.*no-byte-compile: t' $< > /dev/null; then \ - loadfile=$<; \ - else \ - loadfile=$ /dev/null; then \ + ${MAKE} $$elc; \ fi; \ + loadfile=$<; \ echo Testing $$loadfile; \ stat=OK ; \ ${MKDIR_P} $(dir $@) ; \