diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2022-11-21 14:49:54 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2022-11-21 14:49:54 +0100 |
commit | 61e96789ddb1fe81520c3b1cc6c7ff43da5bc26f (patch) | |
tree | 037f438720579fedeac84cda0ab0fc0ca7675919 /lisp/emacs-lisp | |
parent | a3b654e069e563b0a2a6335ec310ada51400ac09 (diff) | |
download | emacs-61e96789ddb1fe81520c3b1cc6c7ff43da5bc26f.tar.gz emacs-61e96789ddb1fe81520c3b1cc6c7ff43da5bc26f.tar.bz2 emacs-61e96789ddb1fe81520c3b1cc6c7ff43da5bc26f.zip |
Activate direct asynchronous processes for Tramp container methods
* doc/misc/tramp.texi (Remote processes): Mention also
tramp-container.el.
* lisp/emacs-lisp/ert-x.el (ert-remote-temporary-file-directory):
Add `tramp-direct-async' to "mock" method.
* lisp/net/tramp-container.el
(tramp-methods) <docker, podman, kubernetes>: Add `tramp-direct-async'.
* lisp/net/tramp.el (tramp-methods): Adapt docstring.
(tramp-handle-make-process): Handle `tramp-direct-async'.
* test/lisp/net/tramp-tests.el (tramp-methods) <mock>:
Add `tramp-direct-async'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/ert-x.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/ert-x.el b/lisp/emacs-lisp/ert-x.el index a891f068a70..49f2a1d6965 100644 --- a/lisp/emacs-lisp/ert-x.el +++ b/lisp/emacs-lisp/ert-x.el @@ -560,6 +560,7 @@ The same keyword arguments are supported as in '("mock" (tramp-login-program "sh") (tramp-login-args (("-i"))) + (tramp-direct-async ("-c")) (tramp-remote-shell "/bin/sh") (tramp-remote-shell-args ("-c")) (tramp-connection-timeout 10))) |