# HG changeset patch # User Bram Moolenaar # Date 1635712204 -3600 # Node ID 33ae003bb569568ae9e61d02e3078784aa4ba218 # Parent c2dea259d51dd169664bbb82a2d7aefb17c9134a patch 8.2.3568: ctrl-hat test fails with Athena and Motif Commit: https://github.com/vim/vim/commit/8753c1dd2c2a5c2c7ff63a9bfb14cd4b9bb9c87f Author: Dominique Pelle Date: Sun Oct 31 20:19:17 2021 +0000 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 https://github.com/vim/vim/issues/9069) diff --git a/src/testdir/test_edit.vim b/src/testdir/test_edit.vim --- 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 --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3568, +/**/ 3567, /**/ 3566,