diff options
| author | Glenn Morris | 2022-07-09 15:12:42 -0700 |
|---|---|---|
| committer | Glenn Morris | 2022-07-09 15:12:42 -0700 |
| commit | 588feeecfd8e4d20e1b4bc7cbb0dea2422026105 (patch) | |
| tree | ea7ad6e443f7a76cd76575e8236e278e339be04a | |
| parent | ad011fd3accd97f5ab96dd7459ee8ef9f6ab4090 (diff) | |
| download | emacs-588feeecfd8e4d20e1b4bc7cbb0dea2422026105.tar.gz emacs-588feeecfd8e4d20e1b4bc7cbb0dea2422026105.zip | |
* test/Makefile.in (WRITE_LOG): Always be verbose on hydra.nixos.
| -rw-r--r-- | test/Makefile.in | 8 |
1 files 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 | |||
| 151 | %.elc: %.el | 151 | %.elc: %.el |
| 152 | $(AM_V_ELC)$(emacs) --batch -f batch-byte-compile $< | 152 | $(AM_V_ELC)$(emacs) --batch -f batch-byte-compile $< |
| 153 | 153 | ||
| 154 | ifdef EMACS_HYDRA_CI | ||
| 155 | WRITE_LOG = 2>&1 | tee $@ | ||
| 156 | else | ||
| 154 | ## Save logs, and show logs for failed tests. | 157 | ## Save logs, and show logs for failed tests. |
| 155 | WRITE_LOG = > $@ 2>&1 || { STAT=$$?; cat $@; exit $$STAT; } | 158 | WRITE_LOG = > $@ 2>&1 || { STAT=$$?; cat $@; exit $$STAT; } |
| 156 | ## On Hydra or Emba, always show logs for certain problematic tests. | ||
| 157 | ifdef EMACS_HYDRA_CI | ||
| 158 | lisp/net/tramp-tests.log \ | ||
| 159 | : WRITE_LOG = 2>&1 | tee $@ | ||
| 160 | endif | 159 | endif |
| 160 | ## On Emba, always show logs for certain problematic tests. | ||
| 161 | ifdef EMACS_EMBA_CI | 161 | ifdef EMACS_EMBA_CI |
| 162 | lisp/filenotify-tests.log lisp/net/tramp-tests.log src/emacs-module-tests.log \ | 162 | lisp/filenotify-tests.log lisp/net/tramp-tests.log src/emacs-module-tests.log \ |
| 163 | : WRITE_LOG = 2>&1 | tee $@ | 163 | : WRITE_LOG = 2>&1 | tee $@ |