From 8753c1dd2c2a5c2c7ff63a9bfb14cd4b9bb9c87f Mon Sep 17 00:00:00 2001 From: Dominique Pelle Date: Sun, 31 Oct 2021 20:19:17 +0000 Subject: [PATCH] patch 8.2.3568: ctrl-hat test fails with Athena and Motif MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Problem: Ctrl-hat test fails with Athena and Motif. (Elimar Riesebieter) Solution: Run the test only with GTK. (Dominique Pellé, closes #9069) --- src/testdir/test_edit.vim | 6 +++++- src/version.c | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/testdir/test_edit.vim b/src/testdir/test_edit.vim index 6c76086a9..0abc47a91 100644 --- a/src/testdir/test_edit.vim +++ b/src/testdir/test_edit.vim @@ -2037,7 +2037,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 diff --git a/src/version.c b/src/version.c index 68372cc05..c42cd2ad2 100644 --- a/src/version.c +++ b/src/version.c @@ -757,6 +757,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3568, /**/ 3567, /**/ -- 2.50.1