changeset 20417:86333cdb8cf8 v8.2.0763

patch 8.2.0763: GUI test fails without the terminal feature Commit: https://github.com/vim/vim/commit/4457e1d98f78152311495b1aff6169383d330a75 Author: Bram Moolenaar <Bram@vim.org> Date: Fri May 15 22:46:44 2020 +0200 patch 8.2.0763: GUI test fails without the terminal feature Problem: GUI test fails without the terminal feature. Solution: Check the terminal feature is supported. (Ken Takata, closes #6084)
author Bram Moolenaar <Bram@vim.org>
date Fri, 15 May 2020 23:00:04 +0200
parents 5ab2bc28e113
children 2005771741d3
files src/testdir/test_gui.vim src/version.c
diffstat 2 files changed, 3 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_gui.vim
+++ b/src/testdir/test_gui.vim
@@ -841,6 +841,7 @@ endfunc
 " Test for "!" option in 'guioptions'. Use a terminal for running external
 " commands
 func Test_gui_run_cmd_in_terminal()
+  CheckFeature terminal
   let save_guioptions = &guioptions
   set guioptions+=!
   if has('win32')
--- a/src/version.c
+++ b/src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    763,
+/**/
     762,
 /**/
     761,