* automated/tramp-tests.el (tramp-test17-insert-directory): Do not
expect a given order of "." and "..".
This commit is contained in:
parent
a41d07b329
commit
4cd6d77375
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2014-12-25 Michael Albinus <michael.albinus@gmx.de>
|
||||||
|
|
||||||
|
* automated/tramp-tests.el (tramp-test17-insert-directory): Do not
|
||||||
|
expect a given order of "." and "..".
|
||||||
|
|
||||||
2014-12-22 Fabián Ezequiel Gallina <fgallina@gnu.org>
|
2014-12-22 Fabián Ezequiel Gallina <fgallina@gnu.org>
|
||||||
|
|
||||||
* automated/python-tests.el (python-indent-electric-colon-2)
|
* automated/python-tests.el (python-indent-electric-colon-2)
|
||||||
|
|
|
@ -953,7 +953,12 @@ This tests also `file-directory-p' and `file-accessible-directory-p'."
|
||||||
(goto-char (point-min))
|
(goto-char (point-min))
|
||||||
(should
|
(should
|
||||||
(looking-at-p
|
(looking-at-p
|
||||||
"\\(total.+[[:digit:]]+\n\\)?.+ \\.\n.+ \\.\\.\n.+ foo$"))))
|
(concat
|
||||||
|
;; There might be a summary line.
|
||||||
|
"\\(total.+[[:digit:]]+\n\\)?"
|
||||||
|
;; We don't know in which order "." and ".." appear.
|
||||||
|
"\\(.+ \\.?\\.\n\\)\\{2\\}"
|
||||||
|
".+ foo$")))))
|
||||||
(ignore-errors (delete-directory tmp-name1 'recursive)))))
|
(ignore-errors (delete-directory tmp-name1 'recursive)))))
|
||||||
|
|
||||||
(ert-deftest tramp-test18-file-attributes ()
|
(ert-deftest tramp-test18-file-attributes ()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue