mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 04:10:54 -08:00
Another attempt to fix bug#32645
* test/lisp/autorevert-tests.el () (auto-revert-test02-auto-revert-deleted-file): * test/lisp/filenotify-tests.el (file-notify-test04-autorevert): Check `file-notify-valid-p', not that the descriptor is nil.
This commit is contained in:
parent
68f086e669
commit
fde614f4cc
2 changed files with 6 additions and 3 deletions
|
|
@ -283,7 +283,8 @@ This expects `auto-revert--messages' to be bound by
|
|||
(write-region "any text" nil tmpfile nil 'no-message)
|
||||
(setq buf (find-file-noselect tmpfile))
|
||||
(with-current-buffer buf
|
||||
(should-not auto-revert-notify-watch-descriptor)
|
||||
(should-not
|
||||
(file-notify-valid-p auto-revert-notify-watch-descriptor))
|
||||
(should (string-equal (buffer-string) "any text"))
|
||||
;; `buffer-stale--default-function' checks for
|
||||
;; `verify-visited-file-modtime'. We must ensure that
|
||||
|
|
@ -314,7 +315,8 @@ This expects `auto-revert--messages' to be bound by
|
|||
;; With w32notify, and on emba, the `stopped' events are not sent.
|
||||
(or (eq file-notify--library 'w32notify)
|
||||
(getenv "EMACS_EMBA_CI")
|
||||
(should-not auto-revert-notify-watch-descriptor))
|
||||
(should-not
|
||||
(file-notify-valid-p auto-revert-notify-watch-descriptor)))
|
||||
|
||||
;; Once the file has been recreated, the buffer shall be
|
||||
;; reverted.
|
||||
|
|
|
|||
|
|
@ -946,7 +946,8 @@ delivered."
|
|||
(file-notify--test-wait-for-events
|
||||
timeout (null auto-revert-notify-watch-descriptor))
|
||||
(should auto-revert-use-notify)
|
||||
(should-not auto-revert-notify-watch-descriptor)
|
||||
(should-not
|
||||
(file-notify-valid-p auto-revert-notify-watch-descriptor))
|
||||
|
||||
;; Modify file. We wait for two seconds, in order to
|
||||
;; have another timestamp. One second seems to be too
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue