summaryrefslogtreecommitdiff
path: root/test/command_callback/test_cuda_nvcc_command_callbacks.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/command_callback/test_cuda_nvcc_command_callbacks.vader
parent555d23c035cf032c5ed89d7d2b0d5b3c478b08c8 (diff)
downloadale-73d031d7eacba95c68287eddb52fb0b73947ba05.zip
Add cuda nvcc linter (#874)
* add cuda nvcc linter
Diffstat (limited to 'test/command_callback/test_cuda_nvcc_command_callbacks.vader')
-rw-r--r--test/command_callback/test_cuda_nvcc_command_callbacks.vader34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/command_callback/test_cuda_nvcc_command_callbacks.vader b/test/command_callback/test_cuda_nvcc_command_callbacks.vader
new file mode 100644
index 00000000..88123e5d
--- /dev/null
+++ b/test/command_callback/test_cuda_nvcc_command_callbacks.vader
@@ -0,0 +1,34 @@
+Before:
+ Save g:ale_cuda_nvcc_executable
+ Save g:ale_cuda_nvcc_options
+
+ unlet! g:ale_cuda_nvcc_executable
+ unlet! b:ale_cuda_nvcc_executable
+ unlet! g:ale_cuda_nvcc_options
+ unlet! b:ale_cuda_nvcc_options
+
+ runtime ale_linters/cuda/nvcc.vim
+
+After:
+ Restore
+ unlet! b:ale_cuda_nvcc_executable
+ unlet! b:ale_cuda_nvcc_options
+ call ale#linter#Reset()
+
+Execute(The executable should be configurable):
+ AssertEqual 'nvcc', ale_linters#cuda#nvcc#GetExecutable(bufnr(''))
+
+ let b:ale_cuda_nvcc_executable = 'foobar'
+
+ AssertEqual 'foobar', ale_linters#cuda#nvcc#GetExecutable(bufnr(''))
+
+Execute(The executable should be used in the command):
+ AssertEqual
+ \ ale#Escape('nvcc') . ' -cuda -std=c++11 %s -o /dev/null',
+ \ ale_linters#cuda#nvcc#GetCommand(bufnr(''))
+
+ let b:ale_cuda_nvcc_executable = 'foobar'
+
+ AssertEqual
+ \ ale#Escape('foobar') . ' -cuda -std=c++11 %s -o /dev/null',
+ \ ale_linters#cuda#nvcc#GetCommand(bufnr(''))