aboutsummaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'test/src')
-rw-r--r--test/src/process-tests.el3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/src/process-tests.el b/test/src/process-tests.el
index e53fb58c091..e83a67290b2 100644
--- a/test/src/process-tests.el
+++ b/test/src/process-tests.el
@@ -184,6 +184,9 @@
184(ert-deftest make-process/mix-stderr () 184(ert-deftest make-process/mix-stderr ()
185 "Check that `make-process' mixes the output streams if STDERR is nil." 185 "Check that `make-process' mixes the output streams if STDERR is nil."
186 (skip-unless (executable-find "bash")) 186 (skip-unless (executable-find "bash"))
187 ;; Frequent random (?) failures on hydra.nixos.org, with no process output.
188 ;; Maybe this test should be tagged unstable? See bug#31214.
189 (skip-unless (not (getenv "EMACS_HYDRA_CI")))
187 (with-temp-buffer 190 (with-temp-buffer
188 (let ((process (make-process 191 (let ((process (make-process
189 :name "mix-stderr" 192 :name "mix-stderr"