diff options
author | w0rp <devw0rp@gmail.com> | 2018-03-27 19:24:22 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-03-27 19:24:22 +0100 |
commit | 95ec9bb780198d0ebc0f175debc286b43dd5fc27 (patch) | |
tree | 29cdaba53436e149ac9d7e26a672b8c7a4d4b920 /test/command_callback/test_cpp_gcc_command_callbacks.vader | |
parent | 018831d601a6fc53216ad448a91bb76b0ac4d8e3 (diff) | |
download | ale-95ec9bb780198d0ebc0f175debc286b43dd5fc27.zip |
#1167 Use the make -n parsing for C++ compilers, and document the new option
Diffstat (limited to 'test/command_callback/test_cpp_gcc_command_callbacks.vader')
-rw-r--r-- | test/command_callback/test_cpp_gcc_command_callbacks.vader | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/command_callback/test_cpp_gcc_command_callbacks.vader b/test/command_callback/test_cpp_gcc_command_callbacks.vader index 9ab4d5cb..7abebf4c 100644 --- a/test/command_callback/test_cpp_gcc_command_callbacks.vader +++ b/test/command_callback/test_cpp_gcc_command_callbacks.vader @@ -30,10 +30,10 @@ Execute(The executable should be configurable): Execute(The executable should be used in the command): AssertEqual \ ale#Escape('gcc') . b:command_tail, - \ ale_linters#cpp#gcc#GetCommand(bufnr('')) + \ ale_linters#cpp#gcc#GetCommand(bufnr(''), []) let b:ale_cpp_gcc_executable = 'foobar' AssertEqual \ ale#Escape('foobar') . b:command_tail, - \ ale_linters#cpp#gcc#GetCommand(bufnr('')) + \ ale_linters#cpp#gcc#GetCommand(bufnr(''), []) |