Added variadic is_empty and is_begin_parens along with tests.

This commit is contained in:
Edward Diener
2014-04-28 19:24:42 -04:00
parent 0a23b4d6a6
commit d2bfda8308
13 changed files with 375 additions and 1 deletions

View File

@ -25,9 +25,11 @@ test-suite preprocessor
[ compile control.cpp ]
[ compile debug.cpp ]
[ compile facilities.cpp ]
[ compile isempty.cpp ]
[ compile iteration.cpp ]
[ compile list.cpp ]
[ compile logical.cpp ]
[ compile punctuation.cpp ]
[ compile repetition.cpp ]
[ compile selection.cpp ]
[ compile seq.cpp ]
@ -44,6 +46,7 @@ test-suite preprocessor_nvm
[ compile control.cpp : <define>BOOST_PP_VARIADICS=0 : control_nvm ]
[ compile debug.cpp : <define>BOOST_PP_VARIADICS=0 : debug_nvm ]
[ compile facilities.cpp : <define>BOOST_PP_VARIADICS=0 : facilities_nvm ]
[ compile isempty.cpp : <define>BOOST_PP_VARIADICS=0 : isempty_nvm ]
[ compile iteration.cpp : <define>BOOST_PP_VARIADICS=0 : iteration_nvm ]
[ compile list.cpp : <define>BOOST_PP_VARIADICS=0 : list_nvm ]
[ compile logical.cpp : <define>BOOST_PP_VARIADICS=0 : logical_nvm ]
@ -80,6 +83,10 @@ test-suite preprocessor_c
: <toolset>gcc:<cflags>-std=c99
: facilities_c
]
[ compile isempty.c
: <toolset>gcc:<cflags>-std=c99
: isempty_c
]
[ compile list.c
: <toolset>gcc:<cflags>-std=c99
: list_c
@ -88,6 +95,10 @@ test-suite preprocessor_c
: <toolset>gcc:<cflags>-std=c99
: logical_c
]
[ compile punctuation.c
: <toolset>gcc:<cflags>-std=c99
: punctuation_c
]
[ compile selection.c
: <toolset>gcc:<cflags>-std=c99
: selection_c
@ -142,6 +153,11 @@ test-suite preprocessor_c_nvm
<toolset>gcc:<cflags>-std=c99
: facilities_c_nvm
]
[ compile isempty.c
: <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99
: isempty_c_nvm
]
[ compile list.c
: <define>BOOST_PP_VARIADICS=0
<toolset>gcc:<cflags>-std=c99