emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] trunk r117415: * test/automated/Makefile.in (%.log): If er


From: Glenn Morris
Subject: [Emacs-diffs] trunk r117415: * test/automated/Makefile.in (%.log): If error, dump log to stdout.
Date: Thu, 26 Jun 2014 07:32:30 +0000
User-agent: Bazaar (2.6b2)

------------------------------------------------------------
revno: 117415
revision-id: address@hidden
parent: address@hidden
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2014-06-26 00:32:16 -0700
message:
  * test/automated/Makefile.in (%.log): If error, dump log to stdout.
  This is mainly so we can see what is going on on hydra...
modified:
  test/ChangeLog                 changelog-20091113204419-o5vbwnq5f7feedwu-8588
  test/automated/Makefile.in     makefile.in-20110112160650-056hnl9qhpjvjicy-6
=== modified file 'test/ChangeLog'
--- a/test/ChangeLog    2014-06-26 06:55:15 +0000
+++ b/test/ChangeLog    2014-06-26 07:32:16 +0000
@@ -1,3 +1,7 @@
+2014-06-26  Glenn Morris  <address@hidden>
+
+       * automated/Makefile.in (%.log): If error, dump log to stdout.
+
 2014-06-26  Stefan Monnier  <address@hidden>
 
        * automated/package-test.el (package-test-update-listing)

=== modified file 'test/automated/Makefile.in'
--- a/test/automated/Makefile.in        2014-06-26 05:47:10 +0000
+++ b/test/automated/Makefile.in        2014-06-26 07:32:16 +0000
@@ -77,7 +77,9 @@
        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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]