2017-05-02 21:44:08 +00:00
|
|
|
Before:
|
|
|
|
Save g:ale_cpp_clangtidy_checks
|
|
|
|
Save g:ale_cpp_clangtidy_options
|
2017-07-16 23:07:18 +00:00
|
|
|
Save g:ale_c_build_dir
|
|
|
|
|
|
|
|
unlet! g:ale_c_build_dir
|
|
|
|
unlet! b:ale_c_build_dir
|
|
|
|
unlet! g:ale_cpp_clangtidy_checks
|
|
|
|
unlet! b:ale_cpp_clangtidy_checks
|
|
|
|
unlet! g:ale_cpp_clangtidy_options
|
|
|
|
unlet! b:ale_cpp_clangtidy_options
|
|
|
|
|
2017-05-02 21:44:08 +00:00
|
|
|
runtime ale_linters/cpp/clangtidy.vim
|
|
|
|
|
2017-07-20 13:52:24 +00:00
|
|
|
call ale#test#SetFilename('test.cpp')
|
|
|
|
|
2017-05-02 21:44:08 +00:00
|
|
|
After:
|
2017-07-16 23:07:18 +00:00
|
|
|
unlet! b:ale_c_build_dir
|
|
|
|
unlet! b:ale_cpp_clangtidy_checks
|
|
|
|
unlet! b:ale_cpp_clangtidy_options
|
|
|
|
unlet! b:ale_cpp_clangtidy_executable
|
|
|
|
|
2017-05-02 21:44:08 +00:00
|
|
|
Restore
|
|
|
|
call ale#linter#Reset()
|
|
|
|
|
|
|
|
Execute(The clangtidy command default should be correct):
|
|
|
|
AssertEqual
|
2017-07-16 23:07:18 +00:00
|
|
|
\ ale#Escape('clang-tidy')
|
|
|
|
\ . ' -checks=''*'' %s',
|
2017-05-02 21:44:08 +00:00
|
|
|
\ ale_linters#cpp#clangtidy#GetCommand(bufnr(''))
|
|
|
|
|
|
|
|
Execute(You should be able to remove the -checks option for clang-tidy):
|
2017-07-16 23:07:18 +00:00
|
|
|
let b:ale_cpp_clangtidy_checks = []
|
|
|
|
|
2017-05-02 21:44:08 +00:00
|
|
|
AssertEqual
|
2017-07-16 23:07:18 +00:00
|
|
|
\ ale#Escape('clang-tidy')
|
|
|
|
\ . ' %s',
|
2017-05-02 21:44:08 +00:00
|
|
|
\ ale_linters#cpp#clangtidy#GetCommand(bufnr(''))
|
|
|
|
|
|
|
|
Execute(You should be able to set other checks for clang-tidy):
|
2017-07-16 23:07:18 +00:00
|
|
|
let b:ale_cpp_clangtidy_checks = ['-*', 'clang-analyzer-*']
|
|
|
|
|
2017-05-02 21:44:08 +00:00
|
|
|
AssertEqual
|
2017-07-16 23:07:18 +00:00
|
|
|
\ ale#Escape('clang-tidy')
|
|
|
|
\ . ' -checks=''-*,clang-analyzer-*'' %s',
|
2017-05-02 21:44:08 +00:00
|
|
|
\ ale_linters#cpp#clangtidy#GetCommand(bufnr(''))
|
|
|
|
|
|
|
|
Execute(You should be able to manually set compiler flags for clang-tidy):
|
2017-07-16 23:07:18 +00:00
|
|
|
let b:ale_cpp_clangtidy_options = '-Wall'
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ ale#Escape('clang-tidy')
|
|
|
|
\ . ' -checks=''*'' %s -- -Wall',
|
|
|
|
\ ale_linters#cpp#clangtidy#GetCommand(bufnr(''))
|
|
|
|
\
|
|
|
|
Execute(The build directory should be configurable):
|
|
|
|
let b:ale_c_build_dir = '/foo/bar'
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ ale#Escape('clang-tidy')
|
|
|
|
\ . ' -checks=''*'' %s -p ' . ale#Escape('/foo/bar'),
|
|
|
|
\ ale_linters#cpp#clangtidy#GetCommand(bufnr(''))
|
|
|
|
|
|
|
|
Execute(The build directory setting should override the options):
|
|
|
|
let b:ale_c_build_dir = '/foo/bar'
|
|
|
|
let b:ale_cpp_clangtidy_options = '-Wall'
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ ale#Escape('clang-tidy')
|
|
|
|
\ . ' -checks=''*'' %s -p ' . ale#Escape('/foo/bar'),
|
|
|
|
\ ale_linters#cpp#clangtidy#GetCommand(bufnr(''))
|
|
|
|
|
2017-07-20 13:52:24 +00:00
|
|
|
Execute(The build directory should be ignored for header files):
|
|
|
|
call ale#test#SetFilename('test.h')
|
|
|
|
|
|
|
|
let b:ale_c_build_dir = '/foo/bar'
|
|
|
|
let b:ale_cpp_clangtidy_options = '-Wall'
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ ale#Escape('clang-tidy')
|
|
|
|
\ . ' -checks=''*'' %s -- -Wall',
|
|
|
|
\ ale_linters#cpp#clangtidy#GetCommand(bufnr(''))
|
|
|
|
\
|
|
|
|
call ale#test#SetFilename('test.hpp')
|
|
|
|
|
|
|
|
AssertEqual
|
|
|
|
\ ale#Escape('clang-tidy')
|
|
|
|
\ . ' -checks=''*'' %s -- -Wall',
|
|
|
|
\ ale_linters#cpp#clangtidy#GetCommand(bufnr(''))
|
|
|
|
|
2017-07-16 23:07:18 +00:00
|
|
|
Execute(The executable should be configurable):
|
|
|
|
let b:ale_cpp_clangtidy_executable = 'foobar'
|
|
|
|
|
2017-05-02 21:44:08 +00:00
|
|
|
AssertEqual
|
2017-07-16 23:07:18 +00:00
|
|
|
\ ale#Escape('foobar')
|
|
|
|
\ . ' -checks=''*'' %s',
|
2017-05-02 21:44:08 +00:00
|
|
|
\ ale_linters#cpp#clangtidy#GetCommand(bufnr(''))
|