diff options
| author | Michael Albinus | 2021-01-07 10:14:37 +0100 |
|---|---|---|
| committer | Michael Albinus | 2021-01-07 10:14:37 +0100 |
| commit | 9db1c0993a99853968c021d094eba37c0cae60bb (patch) | |
| tree | 738a85ade70a9abfe8bdb2bcf90a0b966f6d9b46 | |
| parent | 9b31802e2d13cf8478c23d651741b54ffd4b984b (diff) | |
| download | emacs-9db1c0993a99853968c021d094eba37c0cae60bb.tar.gz emacs-9db1c0993a99853968c021d094eba37c0cae60bb.zip | |
* test/Makefile.in (WRITE_LOG): Mark also problematic tests for emba.
| -rw-r--r-- | test/Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 8aa37ca7854..fc40dad5e2e 100644 --- a/test/Makefile.in +++ b/test/Makefile.in | |||
| @@ -161,11 +161,15 @@ endif | |||
| 161 | 161 | ||
| 162 | ## Save logs, and show logs for failed tests. | 162 | ## Save logs, and show logs for failed tests. |
| 163 | WRITE_LOG = > $@ 2>&1 || { STAT=$$?; cat $@; exit $$STAT; } | 163 | WRITE_LOG = > $@ 2>&1 || { STAT=$$?; cat $@; exit $$STAT; } |
| 164 | ## On Hydra or Emba, always show logs for certain problematic tests. | ||
| 164 | ifdef EMACS_HYDRA_CI | 165 | ifdef EMACS_HYDRA_CI |
| 165 | ## On Hydra, always show logs for certain problematic tests. | ||
| 166 | lisp/net/tramp-tests.log \ | 166 | lisp/net/tramp-tests.log \ |
| 167 | : WRITE_LOG = 2>&1 | tee $@ | 167 | : WRITE_LOG = 2>&1 | tee $@ |
| 168 | endif | 168 | endif |
| 169 | ifdef EMACS_EMBA_CI | ||
| 170 | lisp/filenotify-tests.log lisp/net/tramp-tests.log \ | ||
| 171 | : WRITE_LOG = 2>&1 | tee $@ | ||
| 172 | endif | ||
| 169 | 173 | ||
| 170 | ifeq ($(TEST_LOAD_EL), yes) | 174 | ifeq ($(TEST_LOAD_EL), yes) |
| 171 | testloadfile = $*.el | 175 | testloadfile = $*.el |