diff options
author | Glenn Morris <rgm@gnu.org> | 2017-07-18 12:53:46 -0400 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2017-07-18 12:53:46 -0400 |
commit | 5ab91020fbc2f3bf75aa732a7456d9119ccbc347 (patch) | |
tree | dac27b5b5870de5507a49c80845c4f0e45230e5b /test/Makefile.in | |
parent | c2049489090141311bf8f460bf366d9784950861 (diff) | |
download | emacs-5ab91020fbc2f3bf75aa732a7456d9119ccbc347.tar.gz |
Use a more specific test for running on hydra.nixos.org
* lisp/emacs-lisp/ert.el (ert-summarize-tests-batch-and-exit):
* test/Makefile.in (WRITE_LOG):
* test/lisp/filenotify-tests.el:
* test/lisp/emacs-lisp/eieio-tests/eieio-test-methodinvoke.el
(eieio-test-method-order-list-6):
* test/lisp/emacs-lisp/eieio-tests/eieio-tests.el
(eieio-test-37-obsolete-name-in-constructor):
* test/lisp/net/tramp-tests.el: Replace NIX_STORE with EMACS_HYDRA_CI.
Diffstat (limited to 'test/Makefile.in')
-rw-r--r-- | test/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.in b/test/Makefile.in index 4e1a120d5c2..ba823ec7e32 100644 --- a/test/Makefile.in +++ b/test/Makefile.in @@ -136,7 +136,7 @@ endif $(AM_V_ELC)$(emacs) -f batch-byte-compile $< ## Save logs, and show logs for failed tests. -WRITE_LOG = $(if $(and ${NIX_STORE}, $(findstring tramp, $@)), |& tee $@, > $@ 2>&1) \ +WRITE_LOG = $(if $(and ${EMACS_HYDRA_CI}, $(findstring tramp, $@)), |& tee $@, > $@ 2>&1) \ || { STAT=$$?; cat $@; exit $$STAT; } ifeq ($(TEST_LOAD_EL), yes) |