diff src/testdir/term_util.vim @ 17249:3e2e998ce0db v8.1.1624

patch 8.1.1624: when testing in the GUI may try to run gvim in a terminal commit https://github.com/vim/vim/commit/0d702028feb859e6bde9a0c943d398d86294beb7 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jul 4 14:20:41 2019 +0200 patch 8.1.1624: when testing in the GUI may try to run gvim in a terminal Problem: When testing in the GUI may try to run gvim in a terminal. Solution: Add the -v argument. (Yee Cheng Chin, closes https://github.com/vim/vim/issues/4605) Don't skip tests that work now.
author Bram Moolenaar <Bram@vim.org>
date Thu, 04 Jul 2019 14:30:05 +0200
parents 7927cf327396
children 4ac8161e92e0
line wrap: on
line diff
--- a/src/testdir/term_util.vim
+++ b/src/testdir/term_util.vim
@@ -59,10 +59,8 @@ func RunVimInTerminal(arguments, options
   let cols = get(a:options, 'cols', 75)
   let statusoff = get(a:options, 'statusoff', 1)
 
-  let cmd = GetVimCommandClean()
+  let cmd = GetVimCommandCleanTerm() .. a:arguments
 
-  " Add -v to have gvim run in the terminal (if possible)
-  let cmd .= ' -v ' . a:arguments
   let buf = term_start(cmd, {
 	\ 'curwin': 1,
 	\ 'term_rows': rows,