comparison src/testdir/shared.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 8a43873df941
comparison
equal deleted inserted replaced
17248:6ad25d3ae8ce 17249:3e2e998ce0db
282 " let cmd = 'valgrind --tool=memcheck --leak-check=yes --num-callers=25 --log-file=valgrind ' . cmd 282 " let cmd = 'valgrind --tool=memcheck --leak-check=yes --num-callers=25 --log-file=valgrind ' . cmd
283 283
284 return cmd 284 return cmd
285 endfunc 285 endfunc
286 286
287 " Get the command to run Vim, with --clean, and force to run in terminal so it
288 " won't start a new GUI.
289 func GetVimCommandCleanTerm()
290 " Add -v to have gvim run in the terminal (if possible)
291 return GetVimCommandClean() .. ' -v '
292 endfunc
293
287 " Run Vim, using the "vimcmd" file and "-u NORC". 294 " Run Vim, using the "vimcmd" file and "-u NORC".
288 " "before" is a list of Vim commands to be executed before loading plugins. 295 " "before" is a list of Vim commands to be executed before loading plugins.
289 " "after" is a list of Vim commands to be executed after loading plugins. 296 " "after" is a list of Vim commands to be executed after loading plugins.
290 " Plugins are not loaded, unless 'loadplugins' is set in "before". 297 " Plugins are not loaded, unless 'loadplugins' is set in "before".
291 " Return 1 if Vim could be executed. 298 " Return 1 if Vim could be executed.