File: test_cpp_clazy.vader

package info (click to toggle)
vim-ale 4.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,764 kB
  • sloc: sh: 499; python: 311; perl: 31; makefile: 4; xml: 4; javascript: 1
file content (56 lines) | stat: -rw-r--r-- 1,948 bytes parent folder | download | duplicates (3)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Before:
  call ale#assert#SetUpLinterTest('cpp', 'clazy')
  call ale#test#SetFilename('test.cpp')

After:
  call ale#assert#TearDownLinterTest()

Execute(The clazy command default should be correct):
  AssertLinter 'clazy-standalone',
  \ ale#Escape('clazy-standalone') . ' -checks=' . ale#Escape('level1') . ' %s'

Execute(You should be able to remove the -checks option for clazy-standalone):
  let b:ale_cpp_clazy_checks = []

  AssertLinter 'clazy-standalone', ale#Escape('clazy-standalone') . ' %s'

Execute(You should be able to set other checks for clazy-standalone):
  let b:ale_cpp_clazy_checks = ['level2', 'level3']

  AssertLinter 'clazy-standalone',
  \ ale#Escape('clazy-standalone')
  \   . ' -checks=' . ale#Escape('level2,level3') . ' %s'

Execute(You should be able to manually set compiler flags for clazy-standalone):
  let b:ale_cpp_clazy_options = '-qt4-compat'

  AssertLinter 'clazy-standalone',
  \ ale#Escape('clazy-standalone') . ' -checks=' . ale#Escape('level1') . ' -qt4-compat' . ' %s'
  \
Execute(The build directory should be configurable):
  let b:ale_c_build_dir = '/foo/bar'

  AssertLinter 'clazy-standalone',
  \ ale#Escape('clazy-standalone')
  \   . ' -checks=' . ale#Escape('level1') . ' -p ' . ale#Escape('/foo/bar') . ' %s'

Execute(The build directory should be used for header files):
  call ale#test#SetFilename('test.h')

  let b:ale_c_build_dir = '/foo/bar'

  AssertLinter 'clazy-standalone',
  \ ale#Escape('clazy-standalone')
  \   . ' -checks=' . ale#Escape('level1') . ' -p ' . ale#Escape('/foo/bar') . ' %s'

  call ale#test#SetFilename('test.hpp')

  AssertLinter 'clazy-standalone',
  \ ale#Escape('clazy-standalone')
  \   . ' -checks=' . ale#Escape('level1') . ' -p ' . ale#Escape('/foo/bar') . ' %s'

Execute(The executable should be configurable):
  let b:ale_cpp_clazy_executable = 'foobar'

  AssertLinter 'foobar',
  \ ale#Escape('foobar') . ' -checks=' . ale#Escape('level1') . ' %s'