File: test_cuda_nvcc.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 (20 lines) | stat: -rw-r--r-- 583 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
Before:
  call ale#assert#SetUpLinterTest('cuda', 'nvcc')

After:
  call ale#assert#TearDownLinterTest()

Execute(The executable should be configurable):
  AssertLinter 'nvcc',
  \ ale#Escape('nvcc') . ' -cuda -std=c++11 %s -o ' . g:ale#util#nul_file

  let b:ale_cuda_nvcc_executable = 'foobar'

  AssertLinter 'foobar',
  \ ale#Escape('foobar') . ' -cuda -std=c++11 %s -o ' . g:ale#util#nul_file

Execute(The options should be configurable):
  let g:ale_cuda_nvcc_options = '--foobar'

  AssertLinter 'nvcc',
  \ ale#Escape('nvcc') . ' -cuda --foobar %s -o ' . g:ale#util#nul_file