diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_c_flag_parsing.vader | 11 | ||||
-rw-r--r-- | test/test_c_projects/makefile_project/args | 3 | ||||
-rw-r--r-- | test/test_c_projects/makefile_project/subdir/args | 1 |
3 files changed, 15 insertions, 0 deletions
diff --git a/test/test_c_flag_parsing.vader b/test/test_c_flag_parsing.vader index 8ae6f9dc..dff19aa3 100644 --- a/test/test_c_flag_parsing.vader +++ b/test/test_c_flag_parsing.vader @@ -366,3 +366,14 @@ Execute(CFlags we dont want to pass): \ 'gcc -Wl,option -Wa,option -Wp,option filename.c somelib.a ' \ . '-fdump-file=name -fdiagnostics-arg -fno-show-column' \ ) + +Execute(Expanding @file in CFlags): + AssertEqual + \ '-DARGS1 -DARGS2 -O2', + \ ale#c#ParseCFlags( + \ ale#path#Simplify(g:dir. '/test_c_projects/makefile_project'), + \ 'gcc' + \ . ' -g' + \ . ' @./args' + \ . ' -O2', + \ ) diff --git a/test/test_c_projects/makefile_project/args b/test/test_c_projects/makefile_project/args new file mode 100644 index 00000000..ccaf82ad --- /dev/null +++ b/test/test_c_projects/makefile_project/args @@ -0,0 +1,3 @@ +foolib.a +-DARGS1 +@subdir/args diff --git a/test/test_c_projects/makefile_project/subdir/args b/test/test_c_projects/makefile_project/subdir/args new file mode 100644 index 00000000..3fe9c3fe --- /dev/null +++ b/test/test_c_projects/makefile_project/subdir/args @@ -0,0 +1 @@ +-DARGS2 |