]> git.eshelyaron.com Git - emacs.git/commitdiff
; Instrument filenotify-tests
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 18 Sep 2022 08:51:33 +0000 (10:51 +0200)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 18 Sep 2022 08:51:33 +0000 (10:51 +0200)
test/lisp/filenotify-tests.el

index bdf0da7a7364a7096aff5d08899dd820dd79ab83..cde93e6ed605a0af31f25dc346df49cf3e7f84fc 100644 (file)
@@ -137,6 +137,11 @@ Return nil when any other file notification watch is still active."
 
 (defun file-notify--test-cleanup ()
   "Cleanup after a test."
+  (when (getenv "EMACS_EMBA_CI")
+    (dolist (buf (tramp-list-tramp-buffers))
+      (message ";; %s\n%s" buf (tramp-get-buffer-string buf))
+      (kill-buffer buf)))
+
   (file-notify-rm-all-watches)
 
   (ignore-errors
@@ -173,7 +178,8 @@ Return nil when any other file notification watch is still active."
 
 (setq file-notify-debug nil
       password-cache-expiry nil
-      tramp-verbose 0
+      tramp-verbose (when (getenv "EMACS_EMBA_CI") 10 0)
+
       ;; When the remote user id is 0, Tramp refuses unsafe temporary files.
       tramp-allow-unsafe-temporary-files
       (or tramp-allow-unsafe-temporary-files noninteractive))