From 6da73a8f5c41eb317aeef418608a259d7b0f310b Mon Sep 17 00:00:00 2001 From: bloodstalker Date: Wed, 8 Feb 2017 12:42:42 +0330 Subject: added tdd for 19.8 --- test/testFuncs2.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'test') diff --git a/test/testFuncs2.c b/test/testFuncs2.c index f8c9bd2..f03aea3 100644 --- a/test/testFuncs2.c +++ b/test/testFuncs2.c @@ -31,6 +31,7 @@ typedef gaga incompletearr1; #define ABSOLUTE3(XMACRO) (((XMACRO) <= 0) ? (XMACRO) : -(XMACRO)) #define MINUS(X, Y) ((X) - (Y)) #define PRINT(bubba) printf(#bubba "%d\n", bubba) +#define ALLARG(Z,W) int Z##W #define LOCO i##nt #define LOCO2 #LOCO2 #define LOCO3(bubba) printf(#bubba "%d\n", bu##bba) @@ -154,6 +155,9 @@ static void test33(void) { MINUS(a, b); // MINUS(a); + ALLARG(z, ); + ABSOLUTE(z); + b = (int)a; /* contrast the above START + LEN with the following */ -- cgit v1.2.3