mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-08 05:24:46 +08:00
#711 - Make the gcc executables configurable
This commit is contained in:
39
test/command_callback/test_c_gcc_command_callbacks.vader
Normal file
39
test/command_callback/test_c_gcc_command_callbacks.vader
Normal file
@@ -0,0 +1,39 @@
|
||||
Before:
|
||||
Save g:ale_c_gcc_executable
|
||||
Save g:ale_c_gcc_options
|
||||
|
||||
unlet! g:ale_c_gcc_executable
|
||||
unlet! b:ale_c_gcc_executable
|
||||
unlet! g:ale_c_gcc_options
|
||||
unlet! b:ale_c_gcc_options
|
||||
|
||||
runtime ale_linters/c/gcc.vim
|
||||
|
||||
let b:command_tail = ' -S -x c -fsyntax-only -iquote'
|
||||
\ . ' ' . ale#Escape(getcwd())
|
||||
\ . ' -std=c11 -Wall -'
|
||||
|
||||
After:
|
||||
Restore
|
||||
unlet! b:command_tail
|
||||
unlet! b:ale_c_gcc_executable
|
||||
unlet! b:ale_c_gcc_options
|
||||
call ale#linter#Reset()
|
||||
|
||||
Execute(The executable should be configurable):
|
||||
AssertEqual 'gcc', ale_linters#c#gcc#GetExecutable(bufnr(''))
|
||||
|
||||
let b:ale_c_gcc_executable = 'foobar'
|
||||
|
||||
AssertEqual 'foobar', ale_linters#c#gcc#GetExecutable(bufnr(''))
|
||||
|
||||
Execute(The executable should be used in the command):
|
||||
AssertEqual
|
||||
\ ale#Escape('gcc') . b:command_tail,
|
||||
\ ale_linters#c#gcc#GetCommand(bufnr(''))
|
||||
|
||||
let b:ale_c_gcc_executable = 'foobar'
|
||||
|
||||
AssertEqual
|
||||
\ ale#Escape('foobar') . b:command_tail,
|
||||
\ ale_linters#c#gcc#GetCommand(bufnr(''))
|
||||
Reference in New Issue
Block a user