Fix a filenotify test failure on Cygwin
* test/lisp/filenotify-tests.el (file-notify-test04-autorevert): Increase a sleep-for time from 2 to 3 on Cygwin. This avoids sporadic failures of the test. (Bug#32363)
This commit is contained in:
parent
da0054c307
commit
5dc3d0a9b0
1 changed files with 2 additions and 2 deletions
|
@ -891,9 +891,9 @@ delivered."
|
|||
|
||||
;; Modify file. We wait for two seconds, in order to
|
||||
;; have another timestamp. One second seems to be too
|
||||
;; short.
|
||||
;; short. And Cygwin sporadically requires more than two.
|
||||
(ert-with-message-capture captured-messages
|
||||
(sleep-for 2)
|
||||
(sleep-for (if (eq system-type 'cygwin) 3 2))
|
||||
(write-region
|
||||
"foo bla" nil file-notify--test-tmpfile nil 'no-message)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue