From: Michael Albinus Date: Sat, 5 Jan 2019 15:02:29 +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=9d5e694337efd2492c6a745e5a722d3f64678470;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 b52eac981da..3e99a9aedd0 100644 --- a/test/lisp/filenotify-tests.el +++ b/test/lisp/filenotify-tests.el @@ -796,6 +796,11 @@ delivered." '(created created deleted deleted stopped)) ((string-equal (file-notify--test-library) "kqueue") '(created changed renamed deleted stopped)) + ;; inotify on emba does not detect `deleted' and + ;; `stopped' events of the directory. + ((and (string-equal (file-notify--test-library) "inotify") + (getenv "EMACS_EMBA_CI")) + '(created changed renamed deleted)) (t '(created changed renamed deleted deleted stopped))) (write-region "any text" nil file-notify--test-tmpfile nil 'no-message)