I have a lot of C code, which is written via macro. This code is from huuuge library, and I want to write a test for this library (only one fixed part of it). I want to cover most branches of this macro, because they are written in style:
file1.c:
lib_func(a,b,c,d)
{
if(condition1(d))
MACRO1(a,b,c)
else if(condition2(d)
MACRO2(a,b,c)
else
MACRO3(a,b,c)
}
header1.h:
#define MACRO1(a,b,c) \
{ \
if(a>b) \
INT_MACRO1(a,b,c,10); \
else \
INT_MACRO2(a,b,c,15); \
}
//.. the same for MACRO2 and MACRO3 with different constants
header2.h
#define INT_MACRO1(a,b,c,e) \
{ \
if(c < e - 5) \
// do1
else if ( c < e - 3) \
// do2
else if ( c < e ) \
// do3
else if ( c == e) \
// do4
else if ( c > e ) \
// do5
else if ( c > e+3 ) \
// do 6
else \
// do 7
}
// the like for INT_MACRO2, but with different set of `// doN`
How can I collect a coverage of this code with my test using gcov utility? I can also use other open-source coverage tool if it can work on x86/linux.
doNare rather long, have additionalfors and sometimes nestedwhile. – osgx Jul 6 '11 at 17:12