Add cuda nvcc linter (#874)

* add cuda nvcc linter
This commit is contained in:
BlahGeek
2017-09-08 02:23:58 +08:00
committed by w0rp
parent 555d23c035
commit 73d031d7ea
6 changed files with 148 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
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': '/tmp/cudatest/test.cu',
\ },
\ {
\ 'lnum': 2,
\ 'type': 'E',
\ 'text': 'attribute "global" does not apply here',
\ 'filename': '/tmp/cudatest/common.h',
\ },
\ {
\ 'lnum': 2,
\ 'type': 'E',
\ 'text': 'expected a ";"',
\ 'filename': '/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".',
\ ])