From 7d8ea0b24191d64155fcf9e8d2d2eefff91ae549 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 27 Jan 2020 23:01:30 +0100 Subject: patch 8.2.0162: balloon test fails in the GUI Problem: Balloon test fails in the GUI. Solution: Skip test in the GUI. --- src/testdir/test_functions.vim | 4 +++- src/version.c | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) 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 @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 162, /**/ 161, /**/ -- cgit v1.2.1