summaryrefslogtreecommitdiff
path: root/test/command_callback/test_asm_gcc_command_callbacks.vader
blob: 5ad3118621f3a3ecc11b74c66d5198f67fee4e75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Before:
  call ale#assert#SetUpLinterTest('asm', 'gcc')
  call ale#test#SetFilename('test.cpp')
  let b:command_tail = ' -x assembler -fsyntax-only -iquote'
  \   . ' ' . ale#Escape(g:dir)
  \   . ' -Wall -'

After:
  unlet! b:command_tail

  call ale#assert#TearDownLinterTest()

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

  let b:ale_asm_gcc_executable = 'foobar'

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