summaryrefslogtreecommitdiff
path: root/test/linter/test_cpp_clangcheck.vader
blob: 188141d58ba99313185e98b3161d3077125a87cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Before:
  call ale#assert#SetUpLinterTest('cpp', 'clangcheck')

After:
  call ale#assert#TearDownLinterTest()

Execute(The executable should be configurable):
  AssertLinter 'clang-check',
  \ ale#Escape('clang-check')
  \   . ' -analyze %s --extra-arg=-Xclang --extra-arg=-analyzer-output=text --extra-arg=-fno-color-diagnostics'

  let b:ale_cpp_clangcheck_executable = 'foobar'

  " The extra arguments in the command are used to prevent .plist files from
  " being generated.
  AssertLinter 'foobar',
  \ ale#Escape('foobar')
  \   . ' -analyze %s --extra-arg=-Xclang --extra-arg=-analyzer-output=text --extra-arg=-fno-color-diagnostics'

Execute(The options should be configurable):
  let b:ale_cpp_clangcheck_options = '--something'

  AssertLinter 'clang-check',
  \ ale#Escape('clang-check')
  \   . ' -analyze %s'
  \   . ' --extra-arg=-Xclang --extra-arg=-analyzer-output=text --extra-arg=-fno-color-diagnostics'
  \   . ' --something'

Execute(The build directory should be used when set):
  let b:ale_cpp_clangcheck_options = '--something'
  let b:ale_c_build_dir = '/foo/bar'

  AssertLinter 'clang-check',
  \ ale#Escape('clang-check')
  \   . ' -analyze %s --something -p ' . ale#Escape('/foo/bar')