From d09cedc9bf2addd4ca0be7d63af8434067ab71bf Mon Sep 17 00:00:00 2001 From: Michael Albinus Date: Tue, 27 Jan 2026 18:49:37 +0100 Subject: [PATCH] ; Instrument filenotify test * test/lisp/filenotify-tests.el (file-notify-test08-backup): Instrument test. --- test/lisp/filenotify-tests.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/lisp/filenotify-tests.el b/test/lisp/filenotify-tests.el index 7a68e637653..fc826aba8d4 100644 --- a/test/lisp/filenotify-tests.el +++ b/test/lisp/filenotify-tests.el @@ -1256,6 +1256,10 @@ delivered." :tags '(:expensive-test) (skip-unless (file-notify--test-local-enabled)) + (let ((file-notify-debug ;; Temporarily. + (or file-notify-debug + (getenv "EMACS_EMBA_CI")))) + (with-file-notify-test (write-region "any text" nil file-notify--test-tmpfile nil 'no-message) (should @@ -1334,7 +1338,7 @@ delivered." (file-notify--rm-descriptor file-notify--test-desc) ;; The environment shall be cleaned up. - (file-notify--test-cleanup-p)))) + (file-notify--test-cleanup-p))))) (file-notify--deftest-remote file-notify-test08-backup "Check that backup keeps file notification for remote files.")