From 588feeecfd8e4d20e1b4bc7cbb0dea2422026105 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sat, 9 Jul 2022 15:12:42 -0700 Subject: [PATCH] * test/Makefile.in (WRITE_LOG): Always be verbose on hydra.nixos. --- test/Makefile.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 $@ -- 2.39.5