diff options
author | Bram Moolenaar <Bram@vim.org> | 2023-01-04 18:59:57 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2023-01-04 18:59:57 +0000 |
commit | 2468add0b88849997e6349e7a0b997be133c022d (patch) | |
tree | c7ecf201269118da75e0d07eeb5431bd4ebf9e59 | |
parent | 3259ff3b3bd152d61c1cef7901023034c0d655a3 (diff) | |
download | vim-git-2468add0b88849997e6349e7a0b997be133c022d.tar.gz |
patch 9.0.1148: cmdline test fails in the GUIv9.0.1148
Problem: Cmdline test fails in the GUI.
Solution: Skip the test when running in the GUI.
-rw-r--r-- | src/testdir/test_cmdline.vim | 3 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/testdir/test_cmdline.vim b/src/testdir/test_cmdline.vim index 91ff6f156..a83230620 100644 --- a/src/testdir/test_cmdline.vim +++ b/src/testdir/test_cmdline.vim @@ -655,6 +655,9 @@ func Test_getcompletion() endfunc func Test_multibyte_expression() + " Get a dialog in the GUI + CheckNotGui + " This was using uninitialized memory. let lines =<< trim END set verbose=6 diff --git a/src/version.c b/src/version.c index 39f7a0b0c..a12cda2ee 100644 --- a/src/version.c +++ b/src/version.c @@ -696,6 +696,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1148, +/**/ 1147, /**/ 1146, |