diff options
| author | Glenn Morris | 2017-11-20 13:10:11 -0500 |
|---|---|---|
| committer | Glenn Morris | 2017-11-20 13:10:11 -0500 |
| commit | 5f1cf4b5c7640ed747bd867712a4580bc2e5b92f (patch) | |
| tree | 0114e9e8c6e49ccaaa4253fc36808bccd89a9edc /test | |
| parent | 7aa59d42a72ef51e0ee902b67097983fc1bfe44c (diff) | |
| parent | fc5b8f105505b4f9bb32c5d84d685ab0bc991802 (diff) | |
| download | emacs-5f1cf4b5c7640ed747bd867712a4580bc2e5b92f.tar.gz emacs-5f1cf4b5c7640ed747bd867712a4580bc2e5b92f.zip | |
Merge from origin/emacs-26
fc5b8f1 Fix Bug#29149
5622b2e Merge branch 'emacs-26' of git.sv.gnu.org:/srv/git/emacs into...
4da8799 (emacs-26) Fix misbehavior when drawing three-pixel high hori...
1b082c8 MH-E: don't automatically download external-body parts
069f978 ; * lisp/emacs-lisp/byte-run.el: Fix a typo in a comment.
504a56c ; Fix last commit
a34e44e ; Fix last commit
a8892b4 Further fix for Bug#29291
d14923b Fix divider frame params on NS (bug#29352)
b2518ac Spelling fixes
# Conflicts:
# etc/NEWS
# test/lisp/net/tramp-tests.el
Diffstat (limited to 'test')
| -rw-r--r-- | test/lisp/net/tramp-tests.el | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/lisp/net/tramp-tests.el b/test/lisp/net/tramp-tests.el index bfc62049ccd..491ff60e3e8 100644 --- a/test/lisp/net/tramp-tests.el +++ b/test/lisp/net/tramp-tests.el | |||
| @@ -2983,9 +2983,10 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'." | |||
| 2983 | (set-file-modes tmp-name3 #o444) | 2983 | (set-file-modes tmp-name3 #o444) |
| 2984 | (should-not | 2984 | (should-not |
| 2985 | (string-equal (file-acl tmp-name1) (file-acl tmp-name3))) | 2985 | (string-equal (file-acl tmp-name1) (file-acl tmp-name3))) |
| 2986 | ;; Copy ACL. | 2986 | ;; Copy ACL. Since we don't know whether Emacs is built |
| 2987 | (file-acl tmp-name1) (file-acl tmp-name3) | 2987 | ;; with local ACL support, we must check it. |
| 2988 | (should (string-equal (file-acl tmp-name1) (file-acl tmp-name3)))) | 2988 | (when (set-file-acl tmp-name3 (file-acl tmp-name1)) |
| 2989 | (should (string-equal (file-acl tmp-name1) (file-acl tmp-name3)))) | ||
| 2989 | 2990 | ||
| 2990 | ;; Two files with same ACLs. | 2991 | ;; Two files with same ACLs. |
| 2991 | (delete-file tmp-name1) | 2992 | (delete-file tmp-name1) |