summaryrefslogtreecommitdiff
path: root/test/test_c_import_paths.vader
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-07-16 21:37:10 +0100
committerw0rp <devw0rp@gmail.com>2017-07-16 21:37:10 +0100
commit54ff57317455994305b8bba085c5db166dc34373 (patch)
tree9db086a17ce56e81aab3f6099cdeedbe9350f540 /test/test_c_import_paths.vader
parentbd5ff5b1e52723c910f083bb4b37bad6a410900d (diff)
downloadale-54ff57317455994305b8bba085c5db166dc34373.zip
#711 - Make the clang executables configurable
Diffstat (limited to 'test/test_c_import_paths.vader')
-rw-r--r--test/test_c_import_paths.vader27
1 files changed, 18 insertions, 9 deletions
diff --git a/test/test_c_import_paths.vader b/test/test_c_import_paths.vader
index fbc3d563..ae6375f5 100644
--- a/test/test_c_import_paths.vader
+++ b/test/test_c_import_paths.vader
@@ -85,7 +85,8 @@ Execute(The C Clang handler should include 'include' directories for projects wi
call ale#test#SetFilename('test_c_projects/makefile_project/subdir/file.c')
AssertEqual
- \ 'clang -S -x c -fsyntax-only '
+ \ ale#Escape('clang')
+ \ . ' -S -x c -fsyntax-only '
\ . '-iquote ' . ale#Escape(g:dir . '/test_c_projects/makefile_project/subdir') . ' '
\ . ' -I' . ale#Escape(g:dir . '/test_c_projects/makefile_project/include') . ' '
\ . ' -'
@@ -97,7 +98,8 @@ Execute(The C Clang handler should include 'include' directories for projects wi
call ale#test#SetFilename('test_c_projects/h_file_project/subdir/file.c')
AssertEqual
- \ 'clang -S -x c -fsyntax-only '
+ \ ale#Escape('clang')
+ \ . ' -S -x c -fsyntax-only '
\ . '-iquote ' . ale#Escape(g:dir . '/test_c_projects/h_file_project/subdir') . ' '
\ . ' -I' . ale#Escape(g:dir . '/test_c_projects/h_file_project') . ' '
\ . ' -'
@@ -109,7 +111,8 @@ Execute(The C Clang handler should include root directories for projects with .h
call ale#test#SetFilename('test_c_projects/h_file_project/subdir/file.c')
AssertEqual
- \ 'clang -S -x c -fsyntax-only '
+ \ ale#Escape('clang')
+ \ . ' -S -x c -fsyntax-only '
\ . '-iquote ' . ale#Escape(g:dir . '/test_c_projects/h_file_project/subdir') . ' '
\ . ' -I' . ale#Escape(g:dir . '/test_c_projects/h_file_project') . ' '
\ . ' -'
@@ -121,7 +124,8 @@ Execute(The C Clang handler should include root directories for projects with .h
call ale#test#SetFilename('test_c_projects/hpp_file_project/subdir/file.c')
AssertEqual
- \ 'clang -S -x c -fsyntax-only '
+ \ ale#Escape('clang')
+ \ . ' -S -x c -fsyntax-only '
\ . '-iquote ' . ale#Escape(g:dir . '/test_c_projects/hpp_file_project/subdir') . ' '
\ . ' -I' . ale#Escape(g:dir . '/test_c_projects/hpp_file_project') . ' '
\ . ' -'
@@ -181,7 +185,8 @@ Execute(The C++ Clang handler should include 'include' directories for projects
call ale#test#SetFilename('test_c_projects/makefile_project/subdir/file.cpp')
AssertEqual
- \ 'clang++ -S -x c++ -fsyntax-only '
+ \ ale#Escape('clang++')
+ \ . ' -S -x c++ -fsyntax-only '
\ . '-iquote ' . ale#Escape(g:dir . '/test_c_projects/makefile_project/subdir') . ' '
\ . ' -I' . ale#Escape(g:dir . '/test_c_projects/makefile_project/include') . ' '
\ . ' -'
@@ -193,7 +198,8 @@ Execute(The C++ Clang handler should include 'include' directories for projects
call ale#test#SetFilename('test_c_projects/configure_project/subdir/file.cpp')
AssertEqual
- \ 'clang++ -S -x c++ -fsyntax-only '
+ \ ale#Escape('clang++')
+ \ . ' -S -x c++ -fsyntax-only '
\ . '-iquote ' . ale#Escape(g:dir . '/test_c_projects/configure_project/subdir') . ' '
\ . ' -I' . ale#Escape(g:dir . '/test_c_projects/configure_project/include') . ' '
\ . ' -'
@@ -205,7 +211,8 @@ Execute(The C++ Clang handler should include root directories for projects with
call ale#test#SetFilename('test_c_projects/h_file_project/subdir/file.cpp')
AssertEqual
- \ 'clang++ -S -x c++ -fsyntax-only '
+ \ ale#Escape('clang++')
+ \ . ' -S -x c++ -fsyntax-only '
\ . '-iquote ' . ale#Escape(g:dir . '/test_c_projects/h_file_project/subdir') . ' '
\ . ' -I' . ale#Escape(g:dir . '/test_c_projects/h_file_project') . ' '
\ . ' -'
@@ -217,7 +224,8 @@ Execute(The C++ Clang handler should include root directories for projects with
call ale#test#SetFilename('test_c_projects/hpp_file_project/subdir/file.cpp')
AssertEqual
- \ 'clang++ -S -x c++ -fsyntax-only '
+ \ ale#Escape('clang++')
+ \ . ' -S -x c++ -fsyntax-only '
\ . '-iquote ' . ale#Escape(g:dir . '/test_c_projects/hpp_file_project/subdir') . ' '
\ . ' -I' . ale#Escape(g:dir . '/test_c_projects/hpp_file_project') . ' '
\ . ' -'
@@ -237,7 +245,8 @@ Execute(The C++ Clang handler shoud use the include directory based on the .git
call ale#test#SetFilename('test_c_projects/git_and_nested_makefiles/src/file.cpp')
AssertEqual
- \ 'clang++ -S -x c++ -fsyntax-only '
+ \ ale#Escape('clang++')
+ \ . ' -S -x c++ -fsyntax-only '
\ . '-iquote ' . ale#Escape(g:dir . '/test_c_projects/git_and_nested_makefiles/src') . ' '
\ . ' -I' . ale#Escape(g:dir . '/test_c_projects/git_and_nested_makefiles/include') . ' '
\ . ' -'