]> git.eshelyaron.com Git - emacs.git/commitdiff
Adapt Tramp test
authorMichael Albinus <michael.albinus@gmx.de>
Sat, 19 Aug 2023 08:08:35 +0000 (10:08 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sat, 19 Aug 2023 08:08:35 +0000 (10:08 +0200)
* test/lisp/net/tramp-archive-tests.el
(tramp-archive-test44-user-group-ids): Extend test.

test/lisp/net/tramp-archive-tests.el
test/lisp/net/tramp-tests.el

index e34e830cb83274c950f39aa61b074e876d439396..9500ce0efcae825701418dd883fa0ffa01dfc62d 100644 (file)
@@ -895,11 +895,16 @@ This tests also `file-executable-p', `file-writable-p' and `set-file-modes'."
   (skip-unless (and (fboundp 'file-user-uid)
                     (fboundp 'file-group-gid)))
 
-  (let ((default-directory tramp-archive-test-archive))
-    ;; `file-user-uid' and `file-group-gid' exist since Emacs 30.1.
-    ;; We don't want to see compiler warnings for older Emacsen.
-    (should (integerp (with-no-warnings (file-user-uid))))
-    (should (integerp (with-no-warnings (file-group-gid))))))
+  ;; `file-user-uid' and `file-group-gid' exist since Emacs 30.1.
+  ;; We don't want to see compiler warnings for older Emacsen.
+  (let* ((default-directory tramp-archive-test-archive)
+        (uid (with-no-warnings (file-user-uid)))
+        (gid (with-no-warnings (file-group-gid))))
+    (should (integerp uid))
+    (should (integerp gid))
+    (let ((default-directory tramp-archive-test-file-archive))
+      (should (equal uid (with-no-warnings (file-user-uid))))
+      (should (equal gid (with-no-warnings (file-group-gid)))))))
 
 (ert-deftest tramp-archive-test48-auto-load ()
   "Check that `tramp-archive' autoloads properly."
index 61c5378bc9f9e053b4f1b17e4ca1b07610b2960e..50687dfe9939a0ce010be11f250029e3903ea958 100644 (file)
@@ -5383,7 +5383,7 @@ If UNSTABLE is non-nil, the test is tagged as `:unstable'."
     (let ((default-directory ert-remote-temporary-file-directory)
          (tmp-name (tramp--test-make-temp-name nil quoted))
          kill-buffer-query-functions command proc)
-      (should-not (apply #'make-process nil))   ; use `apply' to avoid warnings
+      (should-not (apply #'make-process nil)) ; Use `apply' to avoid warnings.
 
       ;; Simple process.
       (unwind-protect