commit a636e24280abdd2cfe0c0ae6a97f8b0dce564f21
parent 320e56a4e08a118b918fa9c8c916469c6290abec
Author: zeertzjq <zeertzjq@outlook.com>
Date: Thu, 22 Sep 2022 13:15:26 +0800
vim-patch:8.2.3568: ctrl-hat test fails with Athena and Motif
Problem: Ctrl-hat test fails with Athena and Motif. (Elimar Riesebieter)
Solution: Run the test only with GTK. (Dominique Pellé, closes vim/vim#9069)
https://github.com/vim/vim/commit/8753c1dd2c2a5c2c7ff63a9bfb14cd4b9bb9c87f
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/nvim/testdir/test_edit.vim b/src/nvim/testdir/test_edit.vim
@@ -1966,7 +1966,11 @@ endfunc
" Test toggling of input method. See :help i_CTRL-^
func Test_edit_CTRL_hat()
CheckFeature xim
- CheckNotGui " FIXME: why does this test fail when running in the GUI?
+
+ " FIXME: test fails with Athena and Motif GUI.
+ " test also fails when running in the GUI.
+ CheckFeature gui_gtk
+ CheckNotGui
new