diff options
| author | Glenn Morris | 2018-04-30 12:51:17 -0400 |
|---|---|---|
| committer | Glenn Morris | 2018-04-30 12:51:17 -0400 |
| commit | 41f707d03cc77dc9d6667e9ccb214ce61ef2f1de (patch) | |
| tree | 1e97c6dd59f196d5405391736b4292f83b2a78f5 /test/src | |
| parent | bca6c4348077c8c0b368503b16378867b6d49659 (diff) | |
| download | emacs-41f707d03cc77dc9d6667e9ccb214ce61ef2f1de.tar.gz emacs-41f707d03cc77dc9d6667e9ccb214ce61ef2f1de.zip | |
* test/src/process-tests.el (make-process/mix-stderr): Skip on hydra.
Diffstat (limited to 'test/src')
| -rw-r--r-- | test/src/process-tests.el | 3 |
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" |