summaryrefslogtreecommitdiff
path: root/test/handler/test_cuda_nvcc_handler.vader
diff options
context:
space:
mode:
authorBlahGeek <i@blahgeek.com>2017-09-08 02:23:58 +0800
committerw0rp <w0rp@users.noreply.github.com>2017-09-07 19:23:58 +0100
commit73d031d7eacba95c68287eddb52fb0b73947ba05 (patch)
tree6d12b5354686b3170637b93abb252f58eedf4697 /test/handler/test_cuda_nvcc_handler.vader
parent555d23c035cf032c5ed89d7d2b0d5b3c478b08c8 (diff)
downloadale-73d031d7eacba95c68287eddb52fb0b73947ba05.zip
Add cuda nvcc linter (#874)
* add cuda nvcc linter
Diffstat (limited to 'test/handler/test_cuda_nvcc_handler.vader')
-rw-r--r--test/handler/test_cuda_nvcc_handler.vader29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/handler/test_cuda_nvcc_handler.vader b/test/handler/test_cuda_nvcc_handler.vader
new file mode 100644
index 00000000..03297ab7
--- /dev/null
+++ b/test/handler/test_cuda_nvcc_handler.vader
@@ -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".',
+ \ ])