aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Albinus2017-03-14 15:52:16 +0100
committerMichael Albinus2017-03-14 15:52:16 +0100
commita568d0a7d4b62d0b92ecd6450bef1b9a5ac8ae9a (patch)
treec33d96c4eb5f9f9c5e250d1db1ecb1999a31e101
parent19a04b4c327aab2ac7c3089adf891aa8078ef19c (diff)
downloademacs-a568d0a7d4b62d0b92ecd6450bef1b9a5ac8ae9a.tar.gz
emacs-a568d0a7d4b62d0b92ecd6450bef1b9a5ac8ae9a.zip
Reenable lost Tramp test case
* test/lisp/net/tramp-tests.el (tramp-test24-file-name-completion): Reenable lost test case.
-rw-r--r--test/lisp/net/tramp-tests.el9
1 files changed, 8 insertions, 1 deletions
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el
index 6965b49a8e1..45b4ff2f5ab 100644
--- a/test/lisp/net/tramp-tests.el
+++ b/test/lisp/net/tramp-tests.el
@@ -1529,7 +1529,14 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
1529 (member 1529 (member
1530 (format "%s:" method) 1530 (format "%s:" method)
1531 (file-name-all-completions (substring method 0 1) "/")))) 1531 (file-name-all-completions (substring method 0 1) "/"))))
1532 (unless (or (zerop (length method)) (zerop (length host))) 1532 (unless (zerop (length host))
1533 (let ((tramp-default-method (or method tramp-default-method)))
1534 (should
1535 (member
1536 (format "-:%s:" host)
1537 (file-name-all-completions
1538 (format "-:%s" (substring host 0 1)) "/")))))
1539 (unless (or (zerop (length method)) (zerop (length host)))
1533 (should 1540 (should
1534 (member 1541 (member
1535 (format "%s:%s:" method host) 1542 (format "%s:%s:" method host)