]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 8.2.0162: balloon test fails in the GUI v8.2.0162
authorBram Moolenaar <Bram@vim.org>
Mon, 27 Jan 2020 22:01:30 +0000 (23:01 +0100)
committerBram Moolenaar <Bram@vim.org>
Mon, 27 Jan 2020 22:01:30 +0000 (23:01 +0100)
Problem:    Balloon test fails in the GUI.
Solution:   Skip test in the GUI.

src/testdir/test_functions.vim
src/version.c

index 1d18190a62be52b496e04b035a2fb728d90df85e..c6088f33a66a85a0125fec958ef82300b087427a 100644 (file)
@@ -1147,7 +1147,9 @@ func Test_balloon_show()
   if has('balloon_eval')
     " This won't do anything but must not crash either.
     call balloon_show('hi!')
-    call balloon_show(range(3))
+    if !has('gui_running')
+      call balloon_show(range(3))
+    endif
   endif
 endfunc
 
index a87ca0703ca7695c75377ac7a5f5b30a29c6d801..7c5af637110ef5b7379a41f357aff072c8706811 100644 (file)
@@ -742,6 +742,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    162,
 /**/
     161,
 /**/