From: Glenn Morris Date: Sat, 9 Jul 2022 22:12:42 +0000 (-0700) Subject: * test/Makefile.in (WRITE_LOG): Always be verbose on hydra.nixos. X-Git-Tag: emacs-29.0.90~1447^2~1058 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=588feeecfd8e4d20e1b4bc7cbb0dea2422026105;p=emacs.git * test/Makefile.in (WRITE_LOG): Always be verbose on hydra.nixos. --- diff --git a/test/Makefile.in b/test/Makefile.in index 0be5842512f..1fa9d5f7d9d 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -151,13 +151,13 @@ endif %.elc: %.el $(AM_V_ELC)$(emacs) --batch -f batch-byte-compile $< +ifdef EMACS_HYDRA_CI +WRITE_LOG = 2>&1 | tee $@ +else ## Save logs, and show logs for failed tests. WRITE_LOG = > $@ 2>&1 || { STAT=$$?; cat $@; exit $$STAT; } -## On Hydra or Emba, always show logs for certain problematic tests. -ifdef EMACS_HYDRA_CI -lisp/net/tramp-tests.log \ -: WRITE_LOG = 2>&1 | tee $@ endif +## On Emba, always show logs for certain problematic tests. ifdef EMACS_EMBA_CI lisp/filenotify-tests.log lisp/net/tramp-tests.log src/emacs-module-tests.log \ : WRITE_LOG = 2>&1 | tee $@