aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2014-06-26 00:32:16 -0700
committerGlenn Morris <[email protected]>2014-06-26 00:32:16 -0700
commitd9ca41e7a9760b23979e40053c209976f5064c42 (patch)
tree6d6af307e6569ce79ca641c9ff690a3a7971488e /test
parent6e5a5743ddab1142018f20000081184f0bd9dc94 (diff)
* test/automated/Makefile.in (%.log): If error, dump log to stdout.
This is mainly so we can see what is going on on hydra...
Diffstat (limited to 'test')
-rw-r--r--test/ChangeLog4
-rw-r--r--test/automated/Makefile.in4
2 files changed, 7 insertions, 1 deletions
diff --git a/test/ChangeLog b/test/ChangeLog
index ffa0aaead4..fbbc0f9de5 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,7 @@
+2014-06-26 Glenn Morris <[email protected]>
+
+ * automated/Makefile.in (%.log): If error, dump log to stdout.
+
2014-06-26 Stefan Monnier <[email protected]>
* automated/package-test.el (package-test-update-listing)
diff --git a/test/automated/Makefile.in b/test/automated/Makefile.in
index 053812919a..2670aff5dc 100644
--- a/test/automated/Makefile.in
+++ b/test/automated/Makefile.in
@@ -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)