]> code.delx.au - gnu-emacs/commitdiff
Sync with Tramp 2.2.9.
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 16 Feb 2014 17:23:00 +0000 (18:23 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 16 Feb 2014 17:23:00 +0000 (18:23 +0100)
* 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.

doc/misc/ChangeLog
doc/misc/trampver.texi
lisp/ChangeLog
lisp/net/trampver.el
test/ChangeLog
test/automated/tramp-tests.el

index a238483772d269e93e8b4b6de96579f3dd8c4eb4..6b80433b670eaf31ff23c272e050432c08a03d04 100644 (file)
@@ -1,5 +1,9 @@
 2014-02-16  Michael Albinus  <michael.albinus@gmx.de>
 
+       Sync with Tramp 2.2.9.
+
+       * trampver.texi: Update release number.
+
        * efaq-w32.texi (Tramp ssh): Remove also pscp1 and pscp2.
 
 2014-02-14  Jay Belanger  <jay.p.belanger@gmail.com>
index fe91fc893fc58ec23ea6367a7e09125c74599f2b..ece9e5fc2a4bbf374fc2313aff7eae295d970467 100644 (file)
@@ -8,7 +8,7 @@
 @c In the Tramp CVS, the version number is auto-frobbed from
 @c configure.ac, so you should edit that file and run
 @c "autoconf && ./configure" to change the version number.
-@set trampver 2.2.9-pre
+@set trampver 2.2.9
 
 @c Other flags from configuration
 @set instprefix /usr/local
index 3f2d7ddc7c4b6a3cc1c9a67c4a27092edec7c1bb..7783f7fc424fe7d328e5afe37df85b289d3cc697 100644 (file)
@@ -1,3 +1,9 @@
+2013-10-02  Michael Albinus  <michael.albinus@gmx.de>
+
+       Sync with Tramp 2.2.9.
+
+       * net/trampver.el: Update release number.
+
 2014-02-16  Dmitry Gutov  <dgutov@yandex.ru>
 
        * ido.el (ido-file-internal): Don't add the name of an existing
index 0052bafab5fb1237f3816204358a6ceb341eafd2..077aedb4d5fe5568daecc18dfbeca7105b509768 100644 (file)
@@ -31,7 +31,7 @@
 ;; should be changed only there.
 
 ;;;###tramp-autoload
-(defconst tramp-version "2.2.9-pre"
+(defconst tramp-version "2.2.9"
   "This version of Tramp.")
 
 ;;;###tramp-autoload
@@ -44,7 +44,7 @@
                      (= emacs-major-version 21)
                      (>= emacs-minor-version 4)))
             "ok"
-          (format "Tramp 2.2.9-pre is not fit for %s"
+          (format "Tramp 2.2.9 is not fit for %s"
                   (when (string-match "^.*$" (emacs-version))
                     (match-string 0 (emacs-version)))))))
   (unless (string-match "\\`ok\\'" x) (error "%s" x)))
index a7bfa59ccfe1a90765335fae8a4ebb83d5ed9ff6..888c31d9ad033df24dc234edc209578d007c262e 100644 (file)
@@ -1,3 +1,11 @@
+2014-02-16  Michael Albinus  <michael.albinus@gmx.de>
+
+       Sync with Tramp 2.2.9.
+
+       * automated/tramp-tests.el (password-cache-expiry): Set to nil.
+       (tramp-test28-shell-command): Make a while loop when waiting for
+       process exit.
+
 2014-02-11  Michael Albinus  <michael.albinus@gmx.de>
 
        * automated/tramp-tests.el (top): Require `vc', `vc-bzr', `vc-git'
index 46540317e37ecbf1a2dabeb8463efee968119a74..4aac9768a22f31bcb963ce5d0409b78b51c0509d 100644 (file)
@@ -53,7 +53,8 @@
    (t (format "/ssh::%s" temporary-file-directory)))
   "Temporary directory for Tramp tests.")
 
-(setq tramp-verbose 0
+(setq password-cache-expiry nil
+      tramp-verbose 0
       tramp-message-show-message nil)
 
 ;; Disable interactive passwords in batch mode.
@@ -1175,7 +1176,10 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
          (should (file-exists-p tmp-name))
           (async-shell-command
           (format "ls %s" (file-name-nondirectory tmp-name)) (current-buffer))
-         (sit-for 1 'nodisplay)
+         (while (ignore-errors
+                  (memq (process-status (get-buffer-process (current-buffer)))
+                        '(run open)))
+           (sit-for 1 'nodisplay))
          (should
           (string-equal
            (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'."
          (process-send-string
           (get-buffer-process (current-buffer))
           (format "%s\n" (file-name-nondirectory tmp-name)))
-         (sit-for 1 'nodisplay)
+         (while (ignore-errors
+                  (memq (process-status (get-buffer-process (current-buffer)))
+                        '(run open)))
+           (sit-for 1 'nodisplay))
          (should
           (string-equal
            (format "%s\n" (file-name-nondirectory tmp-name)) (buffer-string))))