2017-07-16 21:41:15 +00:00
|
|
|
Before:
|
2018-07-15 17:24:53 +00:00
|
|
|
call ale#assert#SetUpLinterTest('cpp', 'gcc')
|
2017-07-16 21:41:15 +00:00
|
|
|
let b:command_tail = ' -S -x c++ -fsyntax-only -iquote'
|
|
|
|
\ . ' ' . ale#Escape(getcwd())
|
|
|
|
\ . ' -std=c++14 -Wall -'
|
|
|
|
|
|
|
|
After:
|
|
|
|
unlet! b:command_tail
|
2018-07-15 17:24:53 +00:00
|
|
|
call ale#assert#TearDownLinterTest()
|
2017-07-16 21:41:15 +00:00
|
|
|
|
|
|
|
Execute(The executable should be configurable):
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLinter 'gcc', ale#Escape('gcc') . b:command_tail
|
2017-07-16 21:41:15 +00:00
|
|
|
|
|
|
|
let b:ale_cpp_gcc_executable = 'foobar'
|
|
|
|
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLinter 'foobar', ale#Escape('foobar') . b:command_tail
|