diff options
| author | bloodstalker <thabogre@gmail.com> | 2016-12-02 21:11:22 +0000 | 
|---|---|---|
| committer | bloodstalker <thabogre@gmail.com> | 2016-12-02 21:11:22 +0000 | 
| commit | 03156573fc86359a69590a5061816202ba6700aa (patch) | |
| tree | 715d62abaec6461bd2fc813c725b97242aef4e12 /test | |
| parent | updated (diff) | |
| download | mutator-03156573fc86359a69590a5061816202ba6700aa.tar.gz mutator-03156573fc86359a69590a5061816202ba6700aa.zip | |
added tdd tests for 19.10,19.12 and 19.13
Diffstat (limited to 'test')
| -rw-r--r-- | test/testFuncs2.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/test/testFuncs2.c b/test/testFuncs2.c index 36f0720..e15085b 100644 --- a/test/testFuncs2.c +++ b/test/testFuncs2.c @@ -20,6 +20,11 @@ typedef const* INTPTR;  #define ABSOLUTE2(X) ((X >= 0) ? X : -X)  #define ABSOLUTE3(XMACRO) (((XMACRO) <= 0) ? (XMACRO) : -(XMACRO))  #define MINUS(X,Y) ((X) - (Y)) +#define PRINT(bubba) printf(#bubba "%d\n", bubba) +#define LOCO i##nt +#define LOCO2 #LOCO2 +#define LOCO3(bubba) printf(#bubba "%d\n", bu##bba) +#define DEFINEVAR(X,Y) int X##Y  #define LOCOLUPO  #undef LOCOLUPO | 
