From: Michael Albinus Date: Sat, 23 Jan 2021 15:59:07 +0000 (+0100) Subject: Fix failed autorevert test on emba X-Git-Tag: emacs-28.0.90~4143 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6a6fde0375d499a418f81a0dafe803d6cb0d4c97;p=emacs.git Fix failed autorevert test on emba * test/lisp/autorevert-tests.el (auto-revert-test05-global-notify): Check, whether buffer is alive. --- diff --git a/test/lisp/autorevert-tests.el b/test/lisp/autorevert-tests.el index 6da515bb2c8..683e3ea30d4 100644 --- a/test/lisp/autorevert-tests.el +++ b/test/lisp/autorevert-tests.el @@ -524,8 +524,10 @@ This expects `auto-revert--messages' to be bound by (auto-revert-test--write-file "1-b" file-1) (auto-revert-test--wait-for-buffer-text buf-1 "1-b" (auto-revert--timeout)) - (should (buffer-local-value - 'auto-revert-notify-watch-descriptor buf-1)) + ;; On emba, `buf-1' is a killed buffer. + (when (buffer-live-p buf-1) + (should (buffer-local-value + 'auto-revert-notify-watch-descriptor buf-1))) ;; Write a buffer to a new file, then modify the new file on disk. (with-current-buffer buf-2