summaryrefslogtreecommitdiff
path: root/test/command_callback/test_ispc_ispc_command_callbacks.vader
diff options
context:
space:
mode:
authorMartino Pilia <martino.pilia@gmail.com>2018-11-21 10:40:07 +0100
committerMartino Pilia <martino.pilia@gmail.com>2018-11-21 10:40:07 +0100
commit66212966dd39dd721af6a2aa683ed5a93c293c77 (patch)
tree69768f95c002c27a23e822cb3ffed2031aea2e7a /test/command_callback/test_ispc_ispc_command_callbacks.vader
parent9e8f2b08401af5af83b181a0ca5419937f3fd0de (diff)
downloadale-66212966dd39dd721af6a2aa683ed5a93c293c77.zip
Add --nowrap to ispc options
Diffstat (limited to 'test/command_callback/test_ispc_ispc_command_callbacks.vader')
-rw-r--r--test/command_callback/test_ispc_ispc_command_callbacks.vader6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/command_callback/test_ispc_ispc_command_callbacks.vader b/test/command_callback/test_ispc_ispc_command_callbacks.vader
index 012cdee2..f1aeb2f8 100644
--- a/test/command_callback/test_ispc_ispc_command_callbacks.vader
+++ b/test/command_callback/test_ispc_ispc_command_callbacks.vader
@@ -6,15 +6,15 @@ After:
Execute(The executable should be configurable):
AssertLinter 'ispc',
- \ ale#Escape('ispc') . ' %s'
+ \ ale#Escape('ispc') . ' --nowrap %s'
let b:ale_ispc_ispc_executable = 'foo'
AssertLinter 'foo',
- \ ale#Escape('foo') . ' %s'
+ \ ale#Escape('foo') . ' --nowrap %s'
Execute(The options should be configurable):
let g:ale_ispc_ispc_options = '--foo'
AssertLinter 'ispc',
- \ ale#Escape('ispc') . ' --foo' . ' %s'
+ \ ale#Escape('ispc') . ' --nowrap --foo' . ' %s'