summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-01-27 23:01:30 +0100
committerBram Moolenaar <Bram@vim.org>2020-01-27 23:01:30 +0100
commit7d8ea0b24191d64155fcf9e8d2d2eefff91ae549 (patch)
treeb04cb1c3668968200c59a2c2bb7f031afabd3132
parentf8ddb25789a6af530e69f499907979dfbff1c1ea (diff)
downloadvim-git-7d8ea0b24191d64155fcf9e8d2d2eefff91ae549.tar.gz
patch 8.2.0162: balloon test fails in the GUIv8.2.0162
Problem: Balloon test fails in the GUI. Solution: Skip test in the GUI.
-rw-r--r--src/testdir/test_functions.vim4
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/src/testdir/test_functions.vim b/src/testdir/test_functions.vim
index 1d18190a6..c6088f33a 100644
--- a/src/testdir/test_functions.vim
+++ b/src/testdir/test_functions.vim
@@ -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
diff --git a/src/version.c b/src/version.c
index a87ca0703..7c5af6371 100644
--- a/src/version.c
+++ b/src/version.c
@@ -743,6 +743,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 162,
+/**/
161,
/**/
160,