]> git.eshelyaron.com Git - emacs.git/commitdiff
; * test/lisp/net/tramp-tests.el (tramp-test24-file-acl):
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 19 Nov 2017 11:18:37 +0000 (12:18 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 19 Nov 2017 11:18:37 +0000 (12:18 +0100)
Remove test instrumentation.

test/lisp/net/tramp-tests.el

index 1ad286bf60bfac7287b4eb5585676a1ea8be1caf..80735529c18e70d4c1926f8c46e939605fb0502b 100644 (file)
@@ -2968,47 +2968,28 @@ This tests also `make-symbolic-link', `file-truename' and `add-name-to-file'."
            (should (file-acl tmp-name1))
            (copy-file tmp-name1 tmp-name3 nil nil nil 'preserve-permissions)
            (should (file-acl tmp-name3))
-            (tramp--test-message
-             "tmp-name1:\n%stmp-name3:\n%s"
-             (file-acl tmp-name1) (file-acl tmp-name3))
            (should (string-equal (file-acl tmp-name1) (file-acl tmp-name3)))
            ;; Different permissions mean different ACLs.
            (set-file-modes tmp-name1 #o777)
            (set-file-modes tmp-name3 #o444)
-            (tramp--test-message
-             "tmp-name1:\n%stmp-name3:\n%s"
-             (file-acl tmp-name1) (file-acl tmp-name3))
            (should-not
             (string-equal (file-acl tmp-name1) (file-acl tmp-name3)))
-           ;; Copy ACL.  Since we don't know whether Emacs is built
-           ;; with local ACL support, we must check it.
-           (when (set-file-acl tmp-name3 (file-acl tmp-name1))
-              (tramp--test-message
-               "tmp-name1:\n%stmp-name3:\n%s"
-               (file-acl tmp-name1) (file-acl tmp-name3))
-             (should (string-equal (file-acl tmp-name1) (file-acl tmp-name3))))
+           ;; Copy ACL.
+            (file-acl tmp-name1) (file-acl tmp-name3)
+           (should (string-equal (file-acl tmp-name1) (file-acl tmp-name3))))
 
            ;; Two files with same ACLs.
            (delete-file tmp-name1)
            (copy-file tmp-name3 tmp-name1 nil nil nil 'preserve-permissions)
            (should (file-acl tmp-name1))
-            (tramp--test-message
-             "tmp-name1:\n%stmp-name3:\n%s"
-             (file-acl tmp-name1) (file-acl tmp-name3))
            (should (string-equal (file-acl tmp-name1) (file-acl tmp-name3)))
            ;; Different permissions mean different ACLs.
            (set-file-modes tmp-name1 #o777)
            (set-file-modes tmp-name3 #o444)
-            (tramp--test-message
-             "tmp-name1:\n%stmp-name3:\n%s"
-             (file-acl tmp-name1) (file-acl tmp-name3))
            (should-not
             (string-equal (file-acl tmp-name1) (file-acl tmp-name3)))
            ;; Copy ACL.
            (set-file-acl tmp-name1 (file-acl tmp-name3))
-            (tramp--test-message
-             "tmp-name1:\n%stmp-name3:\n%s"
-             (file-acl tmp-name1) (file-acl tmp-name3))
            (should (string-equal (file-acl tmp-name1) (file-acl tmp-name3))))
 
        ;; Cleanup.