diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2021-03-12 16:09:42 +0100 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2021-03-12 16:09:42 +0100 |
commit | e609bf59ebb23c10f0e9f56df38f64be37de06dd (patch) | |
tree | ac27e8e49185bee006cb5bc8a16ca1e8c3ee7b75 /test/lisp/net | |
parent | a0854f939ce3a1de2c8cbc5e38b106a8df4480f6 (diff) | |
download | emacs-e609bf59ebb23c10f0e9f56df38f64be37de06dd.tar.gz emacs-e609bf59ebb23c10f0e9f56df38f64be37de06dd.tar.bz2 emacs-e609bf59ebb23c10f0e9f56df38f64be37de06dd.zip |
Tramp sshfs fixes
* doc/misc/tramp.texi (FUSE setup): Fix typo.
* lisp/net/tramp-sshfs.el (tramp-sshfs-handle-set-file-modes):
Use `tramp-compat-set-file-modes'.
* test/lisp/net/tramp-tests.el
(tramp-test43-asynchronous-requests): Don't run for tramp-sshfs.
Diffstat (limited to 'test/lisp/net')
-rw-r--r-- | test/lisp/net/tramp-tests.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el index 6565919c771..be428fc2a64 100644 --- a/test/lisp/net/tramp-tests.el +++ b/test/lisp/net/tramp-tests.el @@ -6380,7 +6380,7 @@ process sentinels. They shall not disturb each other." ;; Prior Emacs 27, `shell-file-name' was hard coded as "/bin/sh" for ;; remote processes in Emacs. That doesn't work for tramp-adb.el. (skip-unless (or (and (tramp--test-adb-p) (tramp--test-emacs27-p)) - (tramp--test-sh-p) (tramp--test-sshfs-p))) + (tramp--test-sh-p))) (skip-unless (not (tramp--test-crypt-p))) (skip-unless (not (tramp--test-docker-p))) (skip-unless (not (tramp--test-windows-nt-p))) @@ -6767,6 +6767,8 @@ If INTERACTIVE is non-nil, the tests are run interactively." ;; * Fix `tramp-test06-directory-file-name' for `ftp'. ;; * Implement `tramp-test31-interrupt-process' for `adb', `sshfs' and ;; for direct async processes. +;; * Check, why direct async processes do not work for +;; `tramp-test43-asynchronous-requests'. (provide 'tramp-tests) |