diff options
author | w0rp <devw0rp@gmail.com> | 2020-08-27 13:15:04 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2020-08-27 13:15:04 +0100 |
commit | 571cff932d7cbfc967559925366100a8f36fb33a (patch) | |
tree | 27067e455289b2401d60f200ff1002c703637f27 /test/test_c_flag_parsing.vader | |
parent | 17605777d6cbe4a9eba5d31c799e73a6672f59cf (diff) | |
download | ale-571cff932d7cbfc967559925366100a8f36fb33a.zip |
Label the test cases more clearly
Diffstat (limited to 'test/test_c_flag_parsing.vader')
-rw-r--r-- | test/test_c_flag_parsing.vader | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_c_flag_parsing.vader b/test/test_c_flag_parsing.vader index ce2e8018..6656d508 100644 --- a/test/test_c_flag_parsing.vader +++ b/test/test_c_flag_parsing.vader @@ -452,7 +452,7 @@ Execute(ParseCFlags should handle parenthesis and quotes): \ . '-Dtest3=`(" ")` file3.o ' \ ) -Execute(We should include flags with paths that we want): +Execute(We should include several important flags): 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/include')) @@ -480,7 +480,7 @@ Execute(We should include flags with paths that we want): \ . ' -iplugindir=dir -march=native -w' \ ) -Execute(CFlags we dont want to pass): +Execute(We should exclude other flags that cause problems): AssertEqual \ '', \ ale#c#ParseCFlags( @@ -489,7 +489,7 @@ Execute(CFlags we dont want to pass): \ . '-fdump-file=name -fdiagnostics-arg -fno-show-column -fstack-usage' \ ) -Execute(Expanding @file in CFlags): +Execute(We should expand @file in CFlags): AssertEqual \ '-DARGS1 -DARGS2 -O2', \ ale#c#ParseCFlags( |