forked from aniani/vim
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 #4605) Don't skip tests that work now.
This commit is contained in:
@@ -284,6 +284,13 @@ func GetVimCommandClean()
|
|||||||
return cmd
|
return cmd
|
||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
|
" Get the command to run Vim, with --clean, and force to run in terminal so it
|
||||||
|
" won't start a new GUI.
|
||||||
|
func GetVimCommandCleanTerm()
|
||||||
|
" Add -v to have gvim run in the terminal (if possible)
|
||||||
|
return GetVimCommandClean() .. ' -v '
|
||||||
|
endfunc
|
||||||
|
|
||||||
" Run Vim, using the "vimcmd" file and "-u NORC".
|
" Run Vim, using the "vimcmd" file and "-u NORC".
|
||||||
" "before" is a list of Vim commands to be executed before loading plugins.
|
" "before" is a list of Vim commands to be executed before loading plugins.
|
||||||
" "after" is a list of Vim commands to be executed after loading plugins.
|
" "after" is a list of Vim commands to be executed after loading plugins.
|
||||||
|
@@ -59,10 +59,8 @@ func RunVimInTerminal(arguments, options)
|
|||||||
let cols = get(a:options, 'cols', 75)
|
let cols = get(a:options, 'cols', 75)
|
||||||
let statusoff = get(a:options, 'statusoff', 1)
|
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, {
|
let buf = term_start(cmd, {
|
||||||
\ 'curwin': 1,
|
\ 'curwin': 1,
|
||||||
\ 'term_rows': rows,
|
\ 'term_rows': rows,
|
||||||
|
@@ -399,7 +399,7 @@ func Test_motionforce_omap()
|
|||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_error_in_map_expr()
|
func Test_error_in_map_expr()
|
||||||
if !has('terminal') || has('gui_running')
|
if !has('terminal') || (has('win32') && has('gui_running'))
|
||||||
throw 'Skipped: cannot run Vim in a terminal window'
|
throw 'Skipped: cannot run Vim in a terminal window'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@@ -413,7 +413,7 @@ func Test_error_in_map_expr()
|
|||||||
[CODE]
|
[CODE]
|
||||||
call writefile(lines, 'Xtest.vim')
|
call writefile(lines, 'Xtest.vim')
|
||||||
|
|
||||||
let buf = term_start(GetVimCommandClean() .. ' -S Xtest.vim', {'term_rows': 8})
|
let buf = term_start(GetVimCommandCleanTerm() .. ' -S Xtest.vim', {'term_rows': 8})
|
||||||
let job = term_getjob(buf)
|
let job = term_getjob(buf)
|
||||||
call WaitForAssert({-> assert_notequal('', term_getline(buf, 8))})
|
call WaitForAssert({-> assert_notequal('', term_getline(buf, 8))})
|
||||||
|
|
||||||
|
@@ -334,7 +334,7 @@ func Test_nocatch_garbage_collect()
|
|||||||
endfunc
|
endfunc
|
||||||
|
|
||||||
func Test_error_in_timer_callback()
|
func Test_error_in_timer_callback()
|
||||||
if !has('terminal') || has('gui_running')
|
if !has('terminal') || (has('win32') && has('gui_running'))
|
||||||
throw 'Skipped: cannot run Vim in a terminal window'
|
throw 'Skipped: cannot run Vim in a terminal window'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
@@ -348,7 +348,7 @@ func Test_error_in_timer_callback()
|
|||||||
[CODE]
|
[CODE]
|
||||||
call writefile(lines, 'Xtest.vim')
|
call writefile(lines, 'Xtest.vim')
|
||||||
|
|
||||||
let buf = term_start(GetVimCommandClean() .. ' -S Xtest.vim', {'term_rows': 8})
|
let buf = term_start(GetVimCommandCleanTerm() .. ' -S Xtest.vim', {'term_rows': 8})
|
||||||
let job = term_getjob(buf)
|
let job = term_getjob(buf)
|
||||||
call WaitForAssert({-> assert_notequal('', term_getline(buf, 8))})
|
call WaitForAssert({-> assert_notequal('', term_getline(buf, 8))})
|
||||||
|
|
||||||
|
@@ -777,6 +777,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1624,
|
||||||
/**/
|
/**/
|
||||||
1623,
|
1623,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user