1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-22 14:01:47 -07:00

* test/src/process-tests.el (make-process/mix-stderr): Skip on hydra.

This commit is contained in:
Glenn Morris 2018-04-30 12:51:17 -04:00
parent bca6c43480
commit 41f707d03c

View file

@ -184,6 +184,9 @@
(ert-deftest make-process/mix-stderr ()
"Check that `make-process' mixes the output streams if STDERR is nil."
(skip-unless (executable-find "bash"))
;; Frequent random (?) failures on hydra.nixos.org, with no process output.
;; Maybe this test should be tagged unstable? See bug#31214.
(skip-unless (not (getenv "EMACS_HYDRA_CI")))
(with-temp-buffer
(let ((process (make-process
:name "mix-stderr"