diff options
| author | Glenn Morris | 2020-05-12 09:34:46 -0700 |
|---|---|---|
| committer | Glenn Morris | 2020-05-12 09:34:46 -0700 |
| commit | a2792ad54c310fdfabc8a9a8cf5bdf6c98a8ed20 (patch) | |
| tree | 598517cf0d772f1c66bb368efb2982fe23105694 | |
| parent | 4645430b9287c3f5ae9863d465a5dd4158e313a9 (diff) | |
| download | emacs-a2792ad54c310fdfabc8a9a8cf5bdf6c98a8ed20.tar.gz emacs-a2792ad54c310fdfabc8a9a8cf5bdf6c98a8ed20.zip | |
Suppress test failure on hydra.nixos.org
* test/lisp/net/tramp-tests.el (tramp-test28-process-file):
Attempt to suppress hydra oddity.
| -rw-r--r-- | test/lisp/net/tramp-tests.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el index 4cacfa2f712..8c3cb8e2e8f 100644 --- a/test/lisp/net/tramp-tests.el +++ b/test/lisp/net/tramp-tests.el | |||
| @@ -4208,7 +4208,8 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'." | |||
| 4208 | (should (zerop (process-file "true"))) | 4208 | (should (zerop (process-file "true"))) |
| 4209 | (should-not (zerop (process-file "false"))) | 4209 | (should-not (zerop (process-file "false"))) |
| 4210 | (should-not (zerop (process-file "binary-does-not-exist"))) | 4210 | (should-not (zerop (process-file "binary-does-not-exist"))) |
| 4211 | (should (= 42 (process-file "sh" nil nil nil "-c" "exit 42"))) | 4211 | (should (= (if (getenv "EMACS_HYDRA_CI") 127 42) |
| 4212 | (process-file "sh" nil nil nil "-c" "exit 42"))) | ||
| 4212 | ;; Return string in case the process is interrupted. | 4213 | ;; Return string in case the process is interrupted. |
| 4213 | (should (stringp (process-file "sh" nil nil nil "-c" "kill -2 $$"))) | 4214 | (should (stringp (process-file "sh" nil nil nil "-c" "kill -2 $$"))) |
| 4214 | (with-temp-buffer | 4215 | (with-temp-buffer |