# HG changeset patch # User Christian Brabandt # Date 1511120705 -3600 # Node ID ffc7004e904198dbea83b570007df20a8ed6036e # Parent b959416f83cb5b4f14f25d8f28e44cb372245c4c patch 8.0.1320: popup test fails on GUI-only build commit https://github.com/vim/vim/commit/7221fce8b395972b57aea5f36ba2844fe1d4c259 Author: Bram Moolenaar Date: Sun Nov 19 20:32:49 2017 +0100 patch 8.0.1320: popup test fails on GUI-only build Problem: Popup test fails on GUI-only build. Solution: Don't test balloon_split() when it's not available. diff --git a/src/testdir/test_popup.vim b/src/testdir/test_popup.vim --- a/src/testdir/test_popup.vim +++ b/src/testdir/test_popup.vim @@ -704,6 +704,9 @@ func Test_popup_and_preview_autocommand( endfunc func Test_balloon_split() + if !exists('*balloon_split') + return + endif call assert_equal([ \ 'one two three four one two three four one two thre', \ 'e four', diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1320, +/**/ 1319, /**/ 1318,