aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2019-09-26 20:55:49 +0200
committerMichael Albinus2019-09-26 20:55:49 +0200
commitce89cb760f35a7769769966fc3505604ba2b2f4d (patch)
treec42d01caf759cbc200b23abf19ca6fe00ec7b14b
parentc4e0ccd151a29f87bd674a5987f731a0da491692 (diff)
downloademacs-ce89cb760f35a7769769966fc3505604ba2b2f4d.tar.gz
emacs-ce89cb760f35a7769769966fc3505604ba2b2f4d.zip
; Add traces to shadowfile-tests.el
-rw-r--r--test/lisp/shadowfile-tests.el8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/lisp/shadowfile-tests.el b/test/lisp/shadowfile-tests.el
index cee51b20d8e..c60767c27c5 100644
--- a/test/lisp/shadowfile-tests.el
+++ b/test/lisp/shadowfile-tests.el
@@ -63,6 +63,9 @@
63 (format "/mock::%s" temporary-file-directory))) 63 (format "/mock::%s" temporary-file-directory)))
64 "Temporary directory for Tramp tests.") 64 "Temporary directory for Tramp tests.")
65 65
66(message
67 "%s %s" temporary-file-directory shadow-test-remote-temporary-file-directory)
68
66(setq password-cache-expiry nil 69(setq password-cache-expiry nil
67 shadow-debug (getenv "EMACS_HYDRA_CI") 70 shadow-debug (getenv "EMACS_HYDRA_CI")
68 tramp-verbose 0 71 tramp-verbose 0
@@ -73,6 +76,11 @@
73 (ignore-errors 76 (ignore-errors
74 (file-truename shadow-test-remote-temporary-file-directory))) 77 (file-truename shadow-test-remote-temporary-file-directory)))
75 78
79(when shadow-debug
80 (message
81 "%s %s"
82 temporary-file-directory shadow-test-remote-temporary-file-directory))
83
76;; This should happen on hydra only. 84;; This should happen on hydra only.
77(when (getenv "EMACS_HYDRA_CI") 85(when (getenv "EMACS_HYDRA_CI")
78 (add-to-list 'tramp-remote-path 'tramp-own-remote-path)) 86 (add-to-list 'tramp-remote-path 'tramp-own-remote-path))