emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master c8f91b1: Fix autorevert-tests on MS-Windows


From: Eli Zaretskii
Subject: [Emacs-diffs] master c8f91b1: Fix autorevert-tests on MS-Windows
Date: Sat, 4 Feb 2017 11:50:45 +0000 (UTC)

branch: master
commit c8f91b168b0955e1e21acbf291171af1f70725ec
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    Fix autorevert-tests on MS-Windows
    
    * test/lisp/autorevert-tests.el
    (auto-revert-test02-auto-revert-deleted-file): Don't check that
    auto-revert-use-notify was reset to nil on w32.
---
 test/lisp/autorevert-tests.el |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/test/lisp/autorevert-tests.el b/test/lisp/autorevert-tests.el
index c082ba9..c6f1033 100644
--- a/test/lisp/autorevert-tests.el
+++ b/test/lisp/autorevert-tests.el
@@ -190,7 +190,9 @@ This expects `auto-revert--messages' to be bound by
             ;; notification should be disabled, falling back to
             ;; polling.
             (should (string-match "any text" (buffer-string)))
-            (should-not auto-revert-use-notify)
+            ;; With w32notify, the 'stopped' events are not sent.
+            (or (eq file-notify--library 'w32notify)
+                (should-not auto-revert-use-notify))
 
             ;; Once the file has been recreated, the buffer shall be
             ;; reverted.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]