* test/lisp/net/tramp-tests.el (tramp-test28-process-file):
Attempt to suppress hydra oddity.
(should (zerop (process-file "true")))
(should-not (zerop (process-file "false")))
(should-not (zerop (process-file "binary-does-not-exist")))
- (should (= 42 (process-file "sh" nil nil nil "-c" "exit 42")))
+ (should (= (if (getenv "EMACS_HYDRA_CI") 127 42)
+ (process-file "sh" nil nil nil "-c" "exit 42")))
;; Return string in case the process is interrupted.
(should (stringp (process-file "sh" nil nil nil "-c" "kill -2 $$")))
(with-temp-buffer