forked from aniani/vim
patch 8.2.0232: the :compiler command causes a crash
Problem: The :compiler command causes a crash. (Daniel Steinberg) Solution: Do not use the script index if it isn't set.
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
" Test the :compiler command
|
||||
|
||||
source check.vim
|
||||
source shared.vim
|
||||
|
||||
func Test_compiler()
|
||||
if !executable('perl')
|
||||
@@ -48,6 +49,15 @@ func Test_compiler_without_arg()
|
||||
call assert_match(runtime .. '/compiler/xmlwf.vim$', a[-1])
|
||||
endfunc
|
||||
|
||||
" Test executing :compiler from the command line, not from a script
|
||||
func Test_compiler_commandline()
|
||||
call system(GetVimCommandClean() .. ' --not-a-term -c "compiler gcc" -c "call writefile([b:current_compiler], ''XcompilerOut'')" -c "quit"')
|
||||
call assert_equal(0, v:shell_error)
|
||||
call assert_equal(["gcc"], readfile('XcompilerOut'))
|
||||
|
||||
call delete('XcompilerOut')
|
||||
endfunc
|
||||
|
||||
func Test_compiler_completion()
|
||||
call feedkeys(":compiler \<C-A>\<C-B>\"\<CR>", 'tx')
|
||||
call assert_match('^"compiler ant bcc .* xmlwf$', @:)
|
||||
|
Reference in New Issue
Block a user