Suppress superfluous messages in tramp-tests
* test/lisp/net/tramp-tests.el (tramp-test10-write-region) (tramp-test10-write-region-file-precious-flag) (tramp-test34-connection-local-variables) (tramp-test36-vc-registered): Let-bind `inhibit-message'.
This commit is contained in:
parent
eb452dfe95
commit
ec65b9adbe
3 changed files with 12 additions and 3 deletions
|
@ -327,6 +327,11 @@ A nil value for either argument stands for the current time."
|
|||
(unload-feature 'tramp-loaddefs 'force)
|
||||
(unload-feature 'tramp-compat 'force)))
|
||||
|
||||
;;; TODO:
|
||||
;;
|
||||
;; * Starting with Emacs 25.1, replace `tramp-message-show-message' by
|
||||
;; the reverse of `inhibit-message'.
|
||||
|
||||
(provide 'tramp-compat)
|
||||
|
||||
;;; tramp-compat.el ends here
|
||||
|
|
|
@ -58,11 +58,11 @@
|
|||
"A directory file name, which looks like an archive.")
|
||||
|
||||
(setq password-cache-expiry nil
|
||||
tramp-verbose 0
|
||||
tramp-cache-read-persistent-data t ;; For auth-sources.
|
||||
tramp-copy-size-limit nil
|
||||
tramp-message-show-message nil
|
||||
tramp-persistency-file-name nil)
|
||||
tramp-persistency-file-name nil
|
||||
tramp-verbose 0)
|
||||
|
||||
(defun tramp-archive--test-make-temp-name ()
|
||||
"Return a temporary file name for test.
|
||||
|
|
|
@ -2233,7 +2233,8 @@ This checks also `file-name-as-directory', `file-name-directory',
|
|||
(skip-unless (tramp--test-enabled))
|
||||
|
||||
(dolist (quoted (if (tramp--test-expensive-test) '(nil t) '(nil)))
|
||||
(let ((tmp-name (tramp--test-make-temp-name nil quoted)))
|
||||
(let ((tmp-name (tramp--test-make-temp-name nil quoted))
|
||||
(inhibit-message t))
|
||||
(unwind-protect
|
||||
(progn
|
||||
;; Write buffer. Use absolute and relative file name.
|
||||
|
@ -2332,6 +2333,7 @@ This checks also `file-name-as-directory', `file-name-directory',
|
|||
(skip-unless (tramp--test-emacs27-p))
|
||||
|
||||
(let* ((tmp-name (tramp--test-make-temp-name))
|
||||
(inhibit-message t)
|
||||
written-files
|
||||
(advice (lambda (_start _end filename &rest _r)
|
||||
(push filename written-files))))
|
||||
|
@ -4566,6 +4568,7 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
|
|||
(tmp-name2 (expand-file-name "foo" tmp-name1))
|
||||
(enable-local-variables :all)
|
||||
(enable-remote-dir-locals t)
|
||||
(inhibit-message t)
|
||||
kill-buffer-query-functions
|
||||
connection-local-profile-alist connection-local-criteria-alist)
|
||||
(unwind-protect
|
||||
|
@ -4797,6 +4800,7 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
|
|||
(tmp-name1 (tramp--test-make-temp-name nil quoted))
|
||||
(tmp-name2 (expand-file-name "foo" tmp-name1))
|
||||
(tramp-remote-process-environment tramp-remote-process-environment)
|
||||
(inhibit-message t)
|
||||
(vc-handled-backends
|
||||
(with-parsed-tramp-file-name tramp-test-temporary-file-directory nil
|
||||
(cond
|
||||
|
|
Loading…
Add table
Reference in a new issue