]> git.eshelyaron.com Git - emacs.git/commitdiff
* test/automated/Makefile.in (%.log): If error, dump log to stdout.
authorGlenn Morris <rgm@gnu.org>
Thu, 26 Jun 2014 07:32:16 +0000 (00:32 -0700)
committerGlenn Morris <rgm@gnu.org>
Thu, 26 Jun 2014 07:32:16 +0000 (00:32 -0700)
This is mainly so we can see what is going on on hydra...

test/ChangeLog
test/automated/Makefile.in

index ffa0aaead4639a620f57c27a74e1ff48f73df0de..fbbc0f9de512480fa09848454c700a569e08b4f0 100644 (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)
index 053812919ad56e525ecee95c34fa995f71336a0b..2670aff5dc226d1435b497b0e5a3104c33e4e153 100644 (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)