File: test_cuda_nvcc_handler.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 (41 lines) | stat: -rw-r--r-- 1,333 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
Before:
  runtime ale_linters/cuda/nvcc.vim

After:
  call ale#linter#Reset()

Execute(The cuda nvcc handler should parse errors from multiple files for NVCC 8.0):
  AssertEqual
  \ [
  \   {
  \     'lnum': 1,
  \     'type': 'E',
  \     'text': 'this declaration has no storage class or type specifier',
  \     'filename': has('win32')
  \       ? 'C:\tmp\cudatest\test.cu'
  \       : '/tmp/cudatest/test.cu',
  \   },
  \   {
  \     'lnum': 2,
  \     'type': 'E',
  \     'text': 'attribute "global" does not apply here',
  \     'filename': has('win32')
  \       ? 'C:\tmp\cudatest\common.h'
  \       : '/tmp/cudatest/common.h',
  \   },
  \   {
  \     'lnum': 2,
  \     'type': 'E',
  \     'text': 'expected a ";"',
  \     'filename': has('win32')
  \       ? 'C:\tmp\cudatest\common.h'
  \       : '/tmp/cudatest/common.h',
  \   },
  \ ],
  \ ale_linters#cuda#nvcc#HandleNVCCFormat(0, [
  \   '/tmp/cudatest/test.cu(1): error: this declaration has no storage class or type specifier',
  \   '/tmp/cudatest/common.h(2): error: attribute "global" does not apply here',
  \   '/tmp/cudatest/common.h(2): error: expected a ";"',
  \   'At end of source: warning: parsing restarts here after previous syntax error',
  \   '3 errors detected in the compilation of "/tmp/tmpxft_00003a9f_00000000-7_test.cpp1.ii".',
  \ ])