Label the test cases more clearly

This commit is contained in:
w0rp 2020-08-27 13:15:04 +01:00
parent 17605777d6
commit 571cff932d
No known key found for this signature in database
GPG Key ID: 0FC1ECAA8C81CD83
1 changed files with 3 additions and 3 deletions

View File

@ -452,7 +452,7 @@ Execute(ParseCFlags should handle parenthesis and quotes):
\ . '-Dtest3=`(" ")` file3.o ' \ . '-Dtest3=`(" ")` file3.o '
\ ) \ )
Execute(We should include flags with paths that we want): Execute(We should include several important flags):
AssertEqual AssertEqual
\ '-I ' . ale#Escape(ale#path#Simplify(g:dir . '/test_c_projects/makefile_project/inc')) \ '-I ' . ale#Escape(ale#path#Simplify(g:dir . '/test_c_projects/makefile_project/inc'))
\ . ' -I ' . ale#Escape(ale#path#Simplify(g:dir . '/test_c_projects/makefile_project/include')) \ . ' -I ' . ale#Escape(ale#path#Simplify(g:dir . '/test_c_projects/makefile_project/include'))
@ -480,7 +480,7 @@ Execute(We should include flags with paths that we want):
\ . ' -iplugindir=dir -march=native -w' \ . ' -iplugindir=dir -march=native -w'
\ ) \ )
Execute(CFlags we dont want to pass): Execute(We should exclude other flags that cause problems):
AssertEqual AssertEqual
\ '', \ '',
\ ale#c#ParseCFlags( \ ale#c#ParseCFlags(
@ -489,7 +489,7 @@ Execute(CFlags we dont want to pass):
\ . '-fdump-file=name -fdiagnostics-arg -fno-show-column -fstack-usage' \ . '-fdump-file=name -fdiagnostics-arg -fno-show-column -fstack-usage'
\ ) \ )
Execute(Expanding @file in CFlags): Execute(We should expand @file in CFlags):
AssertEqual AssertEqual
\ '-DARGS1 -DARGS2 -O2', \ '-DARGS1 -DARGS2 -O2',
\ ale#c#ParseCFlags( \ ale#c#ParseCFlags(