Minor cleanup of tramp-tests.el on MS Windows
* test/lisp/net/tramp-tests.el (tramp-test29-start-file-process): Do not test remote pty on MS Windows.
This commit is contained in:
parent
dea3d6aa18
commit
fc4379f1ae
1 changed files with 3 additions and 1 deletions
|
@ -4289,7 +4289,9 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
|
|||
(setq proc (start-file-process "test4" (current-buffer) nil))
|
||||
(should (processp proc))
|
||||
(should (equal (process-status proc) 'run))
|
||||
(should (stringp (process-tty-name proc)))))
|
||||
;; On MS Windows, `process-tty-name' returns nil.
|
||||
(unless (tramp--test-windows-nt)
|
||||
(should (stringp (process-tty-name proc))))))
|
||||
|
||||
;; Cleanup.
|
||||
(ignore-errors (delete-process proc))))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue