mirror of
https://github.com/neovim/neovim.git
synced 2025-10-08 02:46:31 +00:00
Fix test failure on Windows [skip travis]
This commit is contained in:
@@ -202,9 +202,17 @@ endfunc
|
||||
func GetVimProg()
|
||||
if empty($NVIM_TEST_ARG0)
|
||||
" Assume the script was sourced instead of running "make".
|
||||
if has('win32')
|
||||
return '..\\..\\..\\build\\bin\\nvim.exe'
|
||||
else
|
||||
return '../../../build/bin/nvim'
|
||||
endif
|
||||
endif
|
||||
if has('win32')
|
||||
return substitute($NVIM_TEST_ARG0, '/', '\\', 'g')
|
||||
else
|
||||
return $NVIM_TEST_ARG0
|
||||
endif
|
||||
endfunc
|
||||
|
||||
" Get the command to run Vim, with -u NONE and --headless arguments.
|
||||
|
Reference in New Issue
Block a user