I am using CuTest for unit testing and would like to get information about code coverage. Are there any code coverage tools available for C?

Thanks

link|improve this question

feedback

3 Answers

up vote 6 down vote accepted

If you're using gcc, there is gcov. Compile your code with the -ftest-coverage -fprofile-arcs options, and without optomization. Then invoke gcov for each source source file. This will generate a .gcov file which contains the source code with the number of times each was executed.

link|improve this answer
Did you mean gcov? manpagez.com/man/1/gcov – Nikolai N Fetissov Oct 8 '10 at 18:12
yes ... fortunately the week-end is coming. Fixed, thanks. – philant Oct 8 '10 at 18:14
feedback

GCC provides coverage functionality.

link|improve this answer
feedback

Our Test Coverage tools handles not only C in general but a variety of C dialects including GCC2/3/4, MS C in its many dialects, etc., as well as a number of other languages.

For C, it is often important that the tool be able to operate in embedded contexts with extremely low overhead. These tools do.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.