diff options
author | Ken Brown <kbrown@cornell.edu> | 2023-08-19 14:18:57 -0400 |
---|---|---|
committer | Ken Brown <kbrown@cornell.edu> | 2023-08-19 14:21:34 -0400 |
commit | f58d01e01e095b18a9c64c0bab3acd79fd4ba96f (patch) | |
tree | f6b4fa70188c7603fbf874d87eef8a9b906c4897 /test/src/keyboard-tests.el | |
parent | 44697457c6048464a68b6d58a1c4cf967fd5be06 (diff) | |
download | emacs-f58d01e01e095b18a9c64c0bab3acd79fd4ba96f.tar.gz emacs-f58d01e01e095b18a9c64c0bab3acd79fd4ba96f.tar.bz2 emacs-f58d01e01e095b18a9c64c0bab3acd79fd4ba96f.zip |
Skip hanging tests on Cygwin (bug#65325)
* test/lisp/server-tests.el (server-tests/can-create-frames-p):
Define to be nil on Cygwin unless Emacs has at least one of the
features gfilenotify, dbus, or threads. This causes three tests
to be skipped.
* test/src/keyboard-tests.el (keyboard-unread-command-events):
Skip on Cygwin unless Emacs has at least one of the features
gfilenotify, dbus, or threads.
Diffstat (limited to 'test/src/keyboard-tests.el')
-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)) |