aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorGlenn Morris2020-04-15 07:50:15 -0700
committerGlenn Morris2020-04-15 07:50:15 -0700
commit97e48510ad4fec9ca5f576a750018a231523f7a6 (patch)
tree06f50ebc5da12038bc4851b44946462a498ac755 /test
parentafa542c914379538f986f1428f176ffe42f62609 (diff)
parenta5f7c269075180e4531f0a784201a09b49731a27 (diff)
downloademacs-97e48510ad4fec9ca5f576a750018a231523f7a6.tar.gz
emacs-97e48510ad4fec9ca5f576a750018a231523f7a6.zip
Merge from origin/emacs-27
a5f7c26907 (origin/emacs-27) * admin/authors.el: Add an author alias. d87a4d1f4e Limit RLIMIT_NOFILE to FD_SETSIZE on macOS e5ca8e5e73 Fix Elisp manual entry on 'set-window-configuration' 485f24223f ; Update ChangeLog.3 8f200254fb ; Update etc/AUTHORS c7adc851ad * admin/authors.el: Add missing author aliases. 4acdd7fe58 Fix edge case errors in filename-matching regexps 5f36e21fe5 Clarify the doc string of 'yank' 13301d4266 New function erc-track-switch-buffer-other-window 38f7538d8f New function erc-switch-to-buffer-other-window # Conflicts: # etc/NEWS
Diffstat (limited to 'test')
-rw-r--r--test/lisp/net/tramp-archive-tests.el2
-rw-r--r--test/lisp/net/tramp-tests.el2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/lisp/net/tramp-archive-tests.el b/test/lisp/net/tramp-archive-tests.el
index b3fc129ef08..8c75d91bb58 100644
--- a/test/lisp/net/tramp-archive-tests.el
+++ b/test/lisp/net/tramp-archive-tests.el
@@ -668,7 +668,7 @@ This tests also `access-file', `file-readable-p' and `file-regular-p'."
668 (setq attr (directory-files-and-attributes tmp-name 'full)) 668 (setq attr (directory-files-and-attributes tmp-name 'full))
669 (dolist (elt attr) 669 (dolist (elt attr)
670 (should (equal (file-attributes (car elt)) (cdr elt)))) 670 (should (equal (file-attributes (car elt)) (cdr elt))))
671 (setq attr (directory-files-and-attributes tmp-name nil "^b")) 671 (setq attr (directory-files-and-attributes tmp-name nil "\\`b"))
672 (should (equal (mapcar #'car attr) '("bar")))) 672 (should (equal (mapcar #'car attr) '("bar"))))
673 673
674 ;; Cleanup. 674 ;; Cleanup.
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el
index 7db9ad42f1b..49668258407 100644
--- a/test/lisp/net/tramp-tests.el
+++ b/test/lisp/net/tramp-tests.el
@@ -3350,7 +3350,7 @@ They might differ only in time attributes or directory size."
3350 (tramp--test-file-attributes-equal-p 3350 (tramp--test-file-attributes-equal-p
3351 (file-attributes (car elt)) (cdr elt)))) 3351 (file-attributes (car elt)) (cdr elt))))
3352 3352
3353 (setq attr (directory-files-and-attributes tmp-name2 nil "^b")) 3353 (setq attr (directory-files-and-attributes tmp-name2 nil "\\`b"))
3354 (should (equal (mapcar #'car attr) '("bar" "boz")))) 3354 (should (equal (mapcar #'car attr) '("bar" "boz"))))
3355 3355
3356 ;; Cleanup. 3356 ;; Cleanup.