diff options
author | Dominique Pelle <dominique.pelle@gmail.com> | 2021-10-31 20:19:17 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-10-31 20:19:17 +0000 |
commit | 8753c1dd2c2a5c2c7ff63a9bfb14cd4b9bb9c87f (patch) | |
tree | 86c8ca862b2067fca009a0b4e5275afba4624b97 /src | |
parent | 9cd063e3195a4c250c8016fa340922ab21fda252 (diff) | |
download | vim-git-8753c1dd2c2a5c2c7ff63a9bfb14cd4b9bb9c87f.tar.gz |
patch 8.2.3568: ctrl-hat test fails with Athena and Motifv8.2.3568
Problem: Ctrl-hat test fails with Athena and Motif. (Elimar Riesebieter)
Solution: Run the test only with GTK. (Dominique Pellé, closes #9069)
Diffstat (limited to 'src')
-rw-r--r-- | src/testdir/test_edit.vim | 6 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 7 insertions, 1 deletions
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 @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3568, +/**/ 3567, /**/ 3566, |