summaryrefslogtreecommitdiff
path: root/src/testdir/test_functions.vim
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 /src/testdir/test_functions.vim
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.
Diffstat (limited to 'src/testdir/test_functions.vim')
-rw-r--r--src/testdir/test_functions.vim4
1 files changed, 3 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