From cf62ef7b070c08bc6858aa88f0ff45be56b7c9b7 Mon Sep 17 00:00:00 2001 From: roel0 Date: Wed, 21 Mar 2018 20:56:29 +0100 Subject: [PATCH] Fixed windows compatibility unit tests #1167 --- test/test_c_parse_makefile.vader | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/test/test_c_parse_makefile.vader b/test/test_c_parse_makefile.vader index 0323ac8..f1988ec 100644 --- a/test/test_c_parse_makefile.vader +++ b/test/test_c_parse_makefile.vader @@ -79,7 +79,9 @@ Execute(The CFlagsToList parser should be able to parse multiple cflags #2): \ '-I' . ale#path#Simplify(g:dir. '/test_c_projects/makefile_project/kernel/include'), \ '-DTEST=`date +%s`'] \ , ale#c#ParseCFlagsToList(ale#path#Simplify(g:dir. '/test_c_projects/makefile_project'), - \ split('gcc -Isubdir -Ikernel/include -DTEST=`date +%s` -c file.c')) + \ split('gcc -Isubdir ' . + \ '-I'. ale#path#Simplify('kernel/include') . + \ ' -DTEST=`date +%s` -c file.c')) Execute(The CFlagsToList parser should be able to parse multiple cflags #3): runtime! ale_linters/c/gcc.vim @@ -92,7 +94,9 @@ Execute(The CFlagsToList parser should be able to parse multiple cflags #3): \ '-I' . ale#path#Simplify(g:dir. '/test_c_projects/makefile_project/kernel/include'), \ '-DTEST=`date +%s`'] \ , ale#c#ParseCFlagsToList(ale#path#Simplify(g:dir. '/test_c_projects/makefile_project'), - \ split('gcc -Dgoal=9 -Isubdir -Ikernel/include -DTEST=`date +%s` -c file.c')) + \ split('gcc -Dgoal=9 -Isubdir ' . + \ '-I'. ale#path#Simplify('kernel/include') . + \ ' -DTEST=`date +%s` -c file.c')) Execute(The CFlagsToList parser should be able to parse multiple cflags #4): runtime! ale_linters/c/gcc.vim @@ -106,4 +110,5 @@ Execute(The CFlagsToList parser should be able to parse multiple cflags #4): \ '-DTEST=`date +%s`'] \ , ale#c#ParseCFlagsToList(ale#path#Simplify(g:dir. '/test_c_projects/makefile_project'), \ split('gcc -Dgoal=9 -Tlinkerfile.ld blabla -Isubdir ' . - \ '-Ikernel/include -DTEST=`date +%s` -c file.c')) + \ '-I'. ale#path#Simplify('kernel/include') . + \ ' -DTEST=`date +%s` -c file.c'))