diff options
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/keyboard-tests.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/src/keyboard-tests.el b/test/src/keyboard-tests.el index 3393c1d9018..bbb9c19e2e7 100644 --- a/test/src/keyboard-tests.el +++ b/test/src/keyboard-tests.el @@ -23,6 +23,11 @@ (ert-deftest keyboard-unread-command-events () "Test `unread-command-events'." + ;; Avoid hang on Cygwin; see bug#65325. + (skip-unless (or (not (eq system-type 'cygwin)) + (featurep 'gfilenotify) + (featurep 'dbus) + (featurep 'threads))) (let ((unread-command-events nil)) (should (equal (progn (push ?\C-a unread-command-events) (read-event nil nil 1)) |