aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2025-04-15 09:45:16 +0300
committerEli Zaretskii2025-04-15 09:45:16 +0300
commitc3fe19aab90c3da68e9a8a48dbfb011317041d1a (patch)
tree4567a59b43eb7bf4927397c5a264476b7134bb59
parente790873be10720c108b9d6833ce0232167f03bf2 (diff)
downloademacs-c3fe19aab90c3da68e9a8a48dbfb011317041d1a.tar.gz
emacs-c3fe19aab90c3da68e9a8a48dbfb011317041d1a.zip
; Fix tab-bar-tests on MS-Windows
* test/lisp/tab-bar-tests.el (tab-bar-tests-quit-restore-window): Skip test on MS-Windows in batch mode, since terminal frames cannot be created in that case.
-rw-r--r--test/lisp/tab-bar-tests.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/lisp/tab-bar-tests.el b/test/lisp/tab-bar-tests.el
index a26d15ce977..450713ce228 100644
--- a/test/lisp/tab-bar-tests.el
+++ b/test/lisp/tab-bar-tests.el
@@ -52,6 +52,7 @@
52 (tab-bar-tabs-set nil)) 52 (tab-bar-tabs-set nil))
53 53
54(ert-deftest tab-bar-tests-quit-restore-window () 54(ert-deftest tab-bar-tests-quit-restore-window ()
55 (skip-when (and noninteractive (eq system-type 'windows-nt)))
55 (let* ((frame-params (when noninteractive 56 (let* ((frame-params (when noninteractive
56 '((window-system . nil) 57 '((window-system . nil)
57 (tty-type . "linux")))) 58 (tty-type . "linux"))))