aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2014-02-16 18:23:00 +0100
committerMichael Albinus2014-02-16 18:23:00 +0100
commitdd7691b7f3d6149778a6d153288bc6c911a8cfc7 (patch)
tree84bc01858b849645dd928c2e7bc07ca0105df6e7
parentd34a353cfd51b01d00a9036240fb607bc502b8dc (diff)
downloademacs-dd7691b7f3d6149778a6d153288bc6c911a8cfc7.tar.gz
emacs-dd7691b7f3d6149778a6d153288bc6c911a8cfc7.zip
Sync with Tramp 2.2.9.
* doc/misc/trampver.texi: Update release number. * lisp/net/trampver.el: Update release number. * test/automated/tramp-tests.el (password-cache-expiry): Set to nil. (tramp-test28-shell-command): Make a while loop when waiting for process exit.
-rw-r--r--doc/misc/ChangeLog4
-rw-r--r--doc/misc/trampver.texi2
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/net/trampver.el4
-rw-r--r--test/ChangeLog8
-rw-r--r--test/automated/tramp-tests.el13
6 files changed, 31 insertions, 6 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index a238483772d..6b80433b670 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,5 +1,9 @@
12014-02-16 Michael Albinus <michael.albinus@gmx.de> 12014-02-16 Michael Albinus <michael.albinus@gmx.de>
2 2
3 Sync with Tramp 2.2.9.
4
5 * trampver.texi: Update release number.
6
3 * efaq-w32.texi (Tramp ssh): Remove also pscp1 and pscp2. 7 * efaq-w32.texi (Tramp ssh): Remove also pscp1 and pscp2.
4 8
52014-02-14 Jay Belanger <jay.p.belanger@gmail.com> 92014-02-14 Jay Belanger <jay.p.belanger@gmail.com>
diff --git a/doc/misc/trampver.texi b/doc/misc/trampver.texi
index fe91fc893fc..ece9e5fc2a4 100644
--- a/doc/misc/trampver.texi
+++ b/doc/misc/trampver.texi
@@ -8,7 +8,7 @@
8@c In the Tramp CVS, the version number is auto-frobbed from 8@c In the Tramp CVS, the version number is auto-frobbed from
9@c configure.ac, so you should edit that file and run 9@c configure.ac, so you should edit that file and run
10@c "autoconf && ./configure" to change the version number. 10@c "autoconf && ./configure" to change the version number.
11@set trampver 2.2.9-pre 11@set trampver 2.2.9
12 12
13@c Other flags from configuration 13@c Other flags from configuration
14@set instprefix /usr/local 14@set instprefix /usr/local
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3f2d7ddc7c4..7783f7fc424 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12013-10-02 Michael Albinus <michael.albinus@gmx.de>
2
3 Sync with Tramp 2.2.9.
4
5 * net/trampver.el: Update release number.
6
12014-02-16 Dmitry Gutov <dgutov@yandex.ru> 72014-02-16 Dmitry Gutov <dgutov@yandex.ru>
2 8
3 * ido.el (ido-file-internal): Don't add the name of an existing 9 * ido.el (ido-file-internal): Don't add the name of an existing
diff --git a/lisp/net/trampver.el b/lisp/net/trampver.el
index 0052bafab5f..077aedb4d5f 100644
--- a/lisp/net/trampver.el
+++ b/lisp/net/trampver.el
@@ -31,7 +31,7 @@
31;; should be changed only there. 31;; should be changed only there.
32 32
33;;;###tramp-autoload 33;;;###tramp-autoload
34(defconst tramp-version "2.2.9-pre" 34(defconst tramp-version "2.2.9"
35 "This version of Tramp.") 35 "This version of Tramp.")
36 36
37;;;###tramp-autoload 37;;;###tramp-autoload
@@ -44,7 +44,7 @@
44 (= emacs-major-version 21) 44 (= emacs-major-version 21)
45 (>= emacs-minor-version 4))) 45 (>= emacs-minor-version 4)))
46 "ok" 46 "ok"
47 (format "Tramp 2.2.9-pre is not fit for %s" 47 (format "Tramp 2.2.9 is not fit for %s"
48 (when (string-match "^.*$" (emacs-version)) 48 (when (string-match "^.*$" (emacs-version))
49 (match-string 0 (emacs-version))))))) 49 (match-string 0 (emacs-version)))))))
50 (unless (string-match "\\`ok\\'" x) (error "%s" x))) 50 (unless (string-match "\\`ok\\'" x) (error "%s" x)))
diff --git a/test/ChangeLog b/test/ChangeLog
index a7bfa59ccfe..888c31d9ad0 100644
--- a/test/ChangeLog
+++ b/test/ChangeLog
@@ -1,3 +1,11 @@
12014-02-16 Michael Albinus <michael.albinus@gmx.de>
2
3 Sync with Tramp 2.2.9.
4
5 * automated/tramp-tests.el (password-cache-expiry): Set to nil.
6 (tramp-test28-shell-command): Make a while loop when waiting for
7 process exit.
8
12014-02-11 Michael Albinus <michael.albinus@gmx.de> 92014-02-11 Michael Albinus <michael.albinus@gmx.de>
2 10
3 * automated/tramp-tests.el (top): Require `vc', `vc-bzr', `vc-git' 11 * automated/tramp-tests.el (top): Require `vc', `vc-bzr', `vc-git'
diff --git a/test/automated/tramp-tests.el b/test/automated/tramp-tests.el
index 46540317e37..4aac9768a22 100644
--- a/test/automated/tramp-tests.el
+++ b/test/automated/tramp-tests.el
@@ -53,7 +53,8 @@
53 (t (format "/ssh::%s" temporary-file-directory))) 53 (t (format "/ssh::%s" temporary-file-directory)))
54 "Temporary directory for Tramp tests.") 54 "Temporary directory for Tramp tests.")
55 55
56(setq tramp-verbose 0 56(setq password-cache-expiry nil
57 tramp-verbose 0
57 tramp-message-show-message nil) 58 tramp-message-show-message nil)
58 59
59;; Disable interactive passwords in batch mode. 60;; Disable interactive passwords in batch mode.
@@ -1175,7 +1176,10 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
1175 (should (file-exists-p tmp-name)) 1176 (should (file-exists-p tmp-name))
1176 (async-shell-command 1177 (async-shell-command
1177 (format "ls %s" (file-name-nondirectory tmp-name)) (current-buffer)) 1178 (format "ls %s" (file-name-nondirectory tmp-name)) (current-buffer))
1178 (sit-for 1 'nodisplay) 1179 (while (ignore-errors
1180 (memq (process-status (get-buffer-process (current-buffer)))
1181 '(run open)))
1182 (sit-for 1 'nodisplay))
1179 (should 1183 (should
1180 (string-equal 1184 (string-equal
1181 (format "%s\n" (file-name-nondirectory tmp-name)) (buffer-string)))) 1185 (format "%s\n" (file-name-nondirectory tmp-name)) (buffer-string))))
@@ -1189,7 +1193,10 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
1189 (process-send-string 1193 (process-send-string
1190 (get-buffer-process (current-buffer)) 1194 (get-buffer-process (current-buffer))
1191 (format "%s\n" (file-name-nondirectory tmp-name))) 1195 (format "%s\n" (file-name-nondirectory tmp-name)))
1192 (sit-for 1 'nodisplay) 1196 (while (ignore-errors
1197 (memq (process-status (get-buffer-process (current-buffer)))
1198 '(run open)))
1199 (sit-for 1 'nodisplay))
1193 (should 1200 (should
1194 (string-equal 1201 (string-equal
1195 (format "%s\n" (file-name-nondirectory tmp-name)) (buffer-string)))) 1202 (format "%s\n" (file-name-nondirectory tmp-name)) (buffer-string))))