mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-16 17:24:23 +00:00
Fix esh-proc-tests on macOS
* test/lisp/eshell/esh-proc-tests.el (esh-proc-test/kill-pipeline): Add pattern matching output when killing a process on macOS (and possibly other BSDs).
This commit is contained in:
parent
15b303dfc9
commit
c6287816f2
1 changed files with 1 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ prompt. See bug#54136."
|
|||
(eshell-wait-for-subprocess t)
|
||||
(should (string-match-p
|
||||
;; "interrupt\n" is for MS-Windows.
|
||||
(rx (or "interrupt\n" "killed\n"))
|
||||
(rx (or "interrupt\n" "killed\n" "killed: 9\n"))
|
||||
(buffer-substring-no-properties
|
||||
output-start (eshell-end-of-output)))))))
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue