* test/automated/Makefile.in (%.log): If error, dump log to stdout.

This is mainly so we can see what is going on on hydra...
This commit is contained in:
Glenn Morris 2014-06-26 00:32:16 -07:00
parent 6e5a5743dd
commit d9ca41e7a9
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2014-06-26 Glenn Morris <rgm@gnu.org>
* automated/Makefile.in (%.log): If error, dump log to stdout.
2014-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
* automated/package-test.el (package-test-update-listing)

View file

@ -77,7 +77,9 @@ all: check
echo Testing $$loadfile; \
stat=OK ; \
$(emacs) -l ert -l $$loadfile \
-f ert-run-tests-batch-and-exit >& $@ || stat=ERROR; \
-f ert-run-tests-batch-and-exit >& $@ || { \
stat=ERROR; \
cat $@; }; \
echo $$stat: $@
ELFILES = $(wildcard ${srcdir}/*.el)