diff options
| author | Michael Albinus | 2017-06-30 18:38:32 +0200 |
|---|---|---|
| committer | Michael Albinus | 2017-06-30 18:38:32 +0200 |
| commit | ceedd86ed448b2cd27a5f96297ce7011eb1e0b97 (patch) | |
| tree | 4b523bcab12ed963e2a912cb13765a455a9f0b86 /test | |
| parent | 169532b0ebc3acb0b1c943d0b3d8b569cd57ca4b (diff) | |
| download | emacs-ceedd86ed448b2cd27a5f96297ce7011eb1e0b97.tar.gz emacs-ceedd86ed448b2cd27a5f96297ce7011eb1e0b97.zip | |
Release Tramp 2.3.2
* doc/misc/tramp.texi (Android shell setup): Show default file name.
Structure section.
* doc/misc/trampver.texi:
* lisp/net/trampver.el: Change version to "2.3.2".
* test/lisp/net/tramp-tests.el (tramp-test-temporary-file-directory):
Offer home directory for mock method if it doesn't exist.
Diffstat (limited to 'test')
| -rw-r--r-- | test/lisp/net/tramp-tests.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el index a10b8579032..a706ed5fb90 100644 --- a/test/lisp/net/tramp-tests.el +++ b/test/lisp/net/tramp-tests.el | |||
| @@ -72,6 +72,10 @@ | |||
| 72 | (add-to-list | 72 | (add-to-list |
| 73 | 'tramp-default-host-alist | 73 | 'tramp-default-host-alist |
| 74 | `("\\`mock\\'" nil ,(system-name))) | 74 | `("\\`mock\\'" nil ,(system-name))) |
| 75 | ;; Emacs' Makefile sets $HOME to a nonexistent value. Needed in | ||
| 76 | ;; batch mode only, therefore. | ||
| 77 | (unless (and (null noninteractive) (file-directory-p "~/")) | ||
| 78 | (setenv "HOME" temporary-file-directory)) | ||
| 75 | (format "/mock::%s" temporary-file-directory))) | 79 | (format "/mock::%s" temporary-file-directory))) |
| 76 | "Temporary directory for Tramp tests.") | 80 | "Temporary directory for Tramp tests.") |
| 77 | 81 | ||