# HG changeset patch # User Bram Moolenaar # Date 1569099604 -7200 # Node ID 5a5e9eed60292751024dd17619f3ddce1d1fb4db # Parent ab2c97df5d0819622847a2738a784fca77d250f0 patch 8.1.2063: some tests fail when +balloon_eval_term is missing Commit: https://github.com/vim/vim/commit/1e82a784ace6d2c4dce594dd6156bcb0028bba9e Author: Bram Moolenaar Date: Sat Sep 21 22:57:06 2019 +0200 patch 8.1.2063: some tests fail when +balloon_eval_term is missing Problem: Some tests fail when +balloon_eval_term is missing but _balloon_eval is present. (Dominique Pelle) Solution: Check the right feature in the test. (closes #4962) diff --git a/src/testdir/test_popupwin.vim b/src/testdir/test_popupwin.vim --- a/src/testdir/test_popupwin.vim +++ b/src/testdir/test_popupwin.vim @@ -1137,7 +1137,7 @@ endfunc func Test_popup_beval() CheckScreendump - CheckFeature balloon_eval + CheckFeature balloon_eval_term let lines =<< trim END call setline(1, range(1, 20)) diff --git a/src/testdir/test_terminal.vim b/src/testdir/test_terminal.vim --- a/src/testdir/test_terminal.vim +++ b/src/testdir/test_terminal.vim @@ -1466,6 +1466,7 @@ let s:test_colors = [ \] func Test_terminal_ansicolors_global() + CheckFeature termguicolors if !exists('*term_getansicolors') throw 'Skipped: term_getansicolors() not supported' endif @@ -1480,6 +1481,7 @@ func Test_terminal_ansicolors_global() endfunc func Test_terminal_ansicolors_func() + CheckFeature termguicolors if !exists('*term_getansicolors') throw 'Skipped: term_getansicolors() not supported' endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2063, +/**/ 2062, /**/ 2061,