From: Michael Albinus Date: Tue, 27 Jul 2021 17:41:57 +0000 (+0200) Subject: Mark all autorevert tests as unstable on Cygwin (bug#49665) X-Git-Tag: emacs-28.0.90~1677 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=35610b870e8581d80963211e4ff983174a070d00;p=emacs.git Mark all autorevert tests as unstable on Cygwin (bug#49665) * test/lisp/autorevert-tests.el: Mark all tests as unstable on Cygwin (bug#49665). --- diff --git a/test/lisp/autorevert-tests.el b/test/lisp/autorevert-tests.el index 3e97e9cfa5b..449dabf9870 100644 --- a/test/lisp/autorevert-tests.el +++ b/test/lisp/autorevert-tests.el @@ -671,6 +671,12 @@ This expects `auto-revert--messages' to be bound by (auto-revert--deftest-remote auto-revert-test07-auto-revert-several-buffers "Check autorevert for several buffers visiting the same remote file.") +;; Mark all tests as unstable on Cygwin (bug#49665). +(when (eq system-type 'cygwin) + (dolist (test (apropos-internal "^auto-revert" #'ert-test-boundp)) + (setf (ert-test-tags (ert-get-test test)) + (cons :unstable (ert-test-tags (ert-get-test test)))))) + (defun auto-revert-test-all (&optional interactive) "Run all tests for \\[auto-revert]." (interactive "p")