diff options
Diffstat (limited to 'test/test_c_import_paths.vader')
-rw-r--r-- | test/test_c_import_paths.vader | 27 |
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') . ' ' \ . ' -' |