summaryrefslogtreecommitdiff
path: root/test/command_callback/test_c_gcc_command_callbacks.vader
blob: c5b316c89473c34bf4e4ab2e45d42eebcaae8aa4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Before:
  Save g:ale_c_parse_makefile
  let g:ale_c_parse_makefile = 0

  call ale#assert#SetUpLinterTest('c', 'gcc')

  let b:command_tail = ' -S -x c -fsyntax-only -iquote'
  \   . ' ' . ale#Escape(getcwd())
  \   . ' -std=c11 -Wall -'

After:
  call ale#assert#TearDownLinterTest()

  unlet! b:command_tail

Execute(The executable should be configurable):
  AssertLinter 'gcc', [ale#Escape('gcc') . b:command_tail]

  let b:ale_c_gcc_executable = 'foobar'

  AssertLinter 'foobar', [ale#Escape('foobar') . b:command_tail]