mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 10:27:41 +00:00
Suppress localized settings in Tramp test.
* automated/tramp-tests.el (tramp-test17-insert-directory): Suppress localized settings in order to have a proper check for the summary line.
This commit is contained in:
parent
9f5a24a6fd
commit
c7cdc8ed5b
2 changed files with 10 additions and 1 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2015-02-22 Michael Albinus <michael.albinus@gmx.de>
|
||||
|
||||
* automated/tramp-tests.el (tramp-test17-insert-directory):
|
||||
Suppress localized settings in order to have a proper check for
|
||||
the summary line.
|
||||
|
||||
2015-02-16 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* automated/eieio-test-methodinvoke.el (make-instance): Add methods
|
||||
|
|
|
|||
|
|
@ -927,7 +927,10 @@ This tests also `file-directory-p' and `file-accessible-directory-p'."
|
|||
(skip-unless (tramp--test-enabled))
|
||||
|
||||
(let* ((tmp-name1 (tramp--test-make-temp-name))
|
||||
(tmp-name2 (expand-file-name "foo" tmp-name1)))
|
||||
(tmp-name2 (expand-file-name "foo" tmp-name1))
|
||||
;; We test for the summary line. Keyword "total" could be localized.
|
||||
(process-environment
|
||||
(append '("LANG=C" "LANGUAGE=C" "LC_ALL=C") process-environment)))
|
||||
(unwind-protect
|
||||
(progn
|
||||
(make-directory tmp-name1)
|
||||
|
|
|
|||
Loading…
Reference in a new issue