diff options
Diffstat (limited to 'test/automated/tramp-tests.el')
-rw-r--r-- | test/automated/tramp-tests.el | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/test/automated/tramp-tests.el b/test/automated/tramp-tests.el index 59a7c152a1a..2640ee9cef5 100644 --- a/test/automated/tramp-tests.el +++ b/test/automated/tramp-tests.el @@ -24,7 +24,7 @@ ;; Some of the tests require access to a remote host files. Since ;; this could be problematic, a mock-up connection method "mock" is ;; used. Emulating a remote connection, it simply calls "sh -i". -;; Tramp's file name handler still run, so this test is sufficient +;; Tramp's file name handlers still run, so this test is sufficient ;; except for connection establishing. ;; If you want to test a real Tramp connection, set @@ -33,10 +33,6 @@ ;; remote host, set this environment variable to "/dev/null" or ;; whatever is appropriate on your system. -;; When running the tests in batch mode, it must NOT require an -;; interactive password prompt unless the environment variable -;; $REMOTE_ALLOW_PASSWORD is set. - ;; A whole test run can be performed calling the command `tramp-test-all'. ;;; Code: @@ -73,10 +69,6 @@ tramp-copy-size-limit nil tramp-message-show-message nil) -;; Disable interactive passwords in batch mode. -(when (and noninteractive (not (getenv "REMOTE_ALLOW_PASSWORD"))) - (defalias 'tramp-read-passwd 'ignore)) - ;; This shall happen on hydra only. (when (getenv "NIX_STORE") (add-to-list 'tramp-remote-path 'tramp-own-remote-path)) |