summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2024-11-13 17:50:30 +0100
committerDaniel Mendler <mail@daniel-mendler.de>2024-11-13 17:50:30 +0100
commit1238e60ae568286f72fed3c289376cb6771916df (patch)
tree21bb965ea97340278cb93bc14216d6e8f3bbbb83
parent8c17d5b20e5ff47d0a1a5909a5a8eef948a07f60 (diff)
compat-tests: Temporarily disable require-with-check test on 30
-rw-r--r--compat-tests.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/compat-tests.el b/compat-tests.el
index b736015..4e9b7d5 100644
--- a/compat-tests.el
+++ b/compat-tests.el
@@ -3172,6 +3172,9 @@
(lambda (_) (error "cycle")))))
(ert-deftest compat-require-with-check ()
+ ;; TODO Reenable test on Emacs 30 as soon as CI Emacs packages have
+ ;; been updated. This usually happens in about a week or two.
+ (static-if (< emacs-major-version 30) (progn
(ert-with-temp-directory dir1
(ert-with-temp-directory dir2
(dolist (dir (list dir1 dir2))
@@ -3187,7 +3190,7 @@
(let ((load-path (cons dir2 load-path)))
(should-error (require-with-check 'compat-reload))
(should-equal 'compat-reload (require-with-check 'compat-reload nil 'noerror))
- (should-equal 'compat-reload (require-with-check 'compat-reload nil 'reload))))))
+ (should-equal 'compat-reload (require-with-check 'compat-reload nil 'reload))))))))
(defvar compat-tests-find-buffer nil)
(ert-deftest compat-find-buffer ()