From f3a4812cf2fe0facbda57bee0810cf23f1c96fa2 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Sun, 20 Apr 2014 23:39:43 +0200 Subject: * automated/tramp-tests.el (tramp-test19-directory-files-and-attributes) (tramp-test22-file-times): Check for `file-attributes' equality only if there is a usable timestamp. (tramp--test-check-files): Do not use `copy-sequence'. --- test/ChangeLog | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/ChangeLog') diff --git a/test/ChangeLog b/test/ChangeLog index d677d13db44..0a9872ba1db 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,11 @@ +2014-04-20 Michael Albinus + + * automated/tramp-tests.el + (tramp-test19-directory-files-and-attributes) + (tramp-test22-file-times): Check for `file-attributes' equality + only if there is a usable timestamp. + (tramp--test-check-files): Do not use `copy-sequence'. + 2014-04-19 Michael Albinus * automated/tramp-tests.el (tramp--test-check-files): Extend test. -- cgit v1.3 From 84b2095cba06265caac7290b1ec10b1d4cc52745 Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Tue, 22 Apr 2014 09:50:58 +0200 Subject: * automated/tramp-tests.el (tramp-test30-special-characters): Remove test for backslash. --- test/ChangeLog | 5 +++++ test/automated/tramp-tests.el | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) (limited to 'test/ChangeLog') diff --git a/test/ChangeLog b/test/ChangeLog index 0a9872ba1db..cf42099e3d3 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,3 +1,8 @@ +2014-04-22 Michael Albinus + + * automated/tramp-tests.el (tramp-test30-special-characters): + Remove test for backslash. + 2014-04-20 Michael Albinus * automated/tramp-tests.el diff --git a/test/automated/tramp-tests.el b/test/automated/tramp-tests.el index f5ba59a02b6..372b00de35a 100644 --- a/test/automated/tramp-tests.el +++ b/test/automated/tramp-tests.el @@ -1464,9 +1464,10 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'." "Check special characters in file names." (skip-unless (tramp--test-enabled)) - ;; Newlines and slashes in file names are not supported. So we don't test. + ;; Newlines, slashes and backslashes in file names are not supported. + ;; So we don't test. (tramp--test-check-files - " foo bar\tbaz " + " foo\tbar baz\t" "$foo$bar$$baz$" "-foo-bar-baz-" "%foo%bar%baz%" @@ -1474,7 +1475,6 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'." "?foo?bar?baz?" "*foo*bar*baz*" "'foo\"bar'baz\"" - "\\foo\\bar\\baz\\" "#foo#bar#baz#" "!foo|bar!baz|" ":foo;bar:baz;" -- cgit v1.3 From d5ff4ded7a225306017006fc96b0a30180ae6f6b Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Tue, 22 Apr 2014 12:52:08 +0200 Subject: * automated/tramp-tests.el (tramp--test-check-files): Remove traces. --- test/ChangeLog | 4 ++-- test/automated/tramp-tests.el | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) (limited to 'test/ChangeLog') diff --git a/test/ChangeLog b/test/ChangeLog index cf42099e3d3..d21f24ff1e8 100644 --- a/test/ChangeLog +++ b/test/ChangeLog @@ -1,7 +1,7 @@ 2014-04-22 Michael Albinus - * automated/tramp-tests.el (tramp-test30-special-characters): - Remove test for backslash. + * automated/tramp-tests.el (tramp--test-check-files): Remove traces. + (tramp-test30-special-characters): Remove test for backslash. 2014-04-20 Michael Albinus diff --git a/test/automated/tramp-tests.el b/test/automated/tramp-tests.el index 372b00de35a..b6e757d3ae5 100644 --- a/test/automated/tramp-tests.el +++ b/test/automated/tramp-tests.el @@ -1426,7 +1426,6 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'." (defun tramp--test-check-files (&rest files) "Runs a simple but comprehensive test over every file in FILES." - (tramp--instrument-test-case 10 (let ((tmp-name1 (tramp--test-make-temp-name)) (tmp-name2 (tramp--test-make-temp-name 'local))) (unwind-protect @@ -1457,7 +1456,7 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'." tmp-name2 nil directory-files-no-dot-files-regexp) (sort files 'string-lessp)))) (ignore-errors (delete-directory tmp-name1 'recursive)) - (ignore-errors (delete-directory tmp-name2 'recursive)))))) + (ignore-errors (delete-directory tmp-name2 'recursive))))) ;; This test is inspired by Bug#17238. (ert-deftest tramp-test30-special-characters () -- cgit v1.3