changeset 31632:874f82a0817c

patch 9.0.1148: cmdline test fails in the GUI Commit: https://github.com/vim/vim/commit/2468add0b88849997e6349e7a0b997be133c022d Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 4 18:59:57 2023 +0000 patch 9.0.1148: cmdline test fails in the GUI Problem: Cmdline test fails in the GUI. Solution: Skip the test when running in the GUI.
author Bram Moolenaar <Bram@vim.org>
date Wed, 04 Jan 2023 20:00:05 +0100
parents 5eca287cd239
children d19377e0a0b4
files src/testdir/test_cmdline.vim src/version.c
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,