From: Michael Albinus Date: Fri, 4 Jan 2019 11:46:27 +0000 (+0100) Subject: * test/lisp/filenotify-tests.el (file-notify-test03-events): Adapt test. X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=99964e240f38df3408c97b0bde0da126ff5939aa;p=emacs.git * test/lisp/filenotify-tests.el (file-notify-test03-events): Adapt test. --- diff --git a/test/lisp/filenotify-tests.el b/test/lisp/filenotify-tests.el index 18b755d7899..60b2fbeada7 100644 --- a/test/lisp/filenotify-tests.el +++ b/test/lisp/filenotify-tests.el @@ -687,9 +687,9 @@ delivered." ;; cygwin does not raise a `changed' event. ((eq system-type 'cygwin) '(created deleted stopped)) - ((string-equal (file-notify--test-library) "kqueue") - '(created changed deleted stopped)) - (t '(created changed deleted deleted stopped))) + ;; Still not all monitors detect both `deleted' events. + (t '((created changed deleted stopped) + (created changed deleted deleted stopped)))) (write-region "any text" nil file-notify--test-tmpfile nil 'no-message) (file-notify--test-read-event)