I have used gcov for testing code coverage, but when it comes to templated c++ code it doesn't work so well. I use boost::spirit extensively and gcov seems to simply ignore templated spirit code.

Also I am wondering if there is a coverage tool to show how threads interacts with each other, pinpointing the possible branches/race conditions/execution flows actually executed.

link|improve this question

33% accept rate
1  
What is "this task"? – Lightness Races in Orbit Oct 10 '11 at 8:49
1  
@TomalakGeret'kal: code coverage? – CharlesB Oct 10 '11 at 8:51
@TomalakGeret'kal testing the code coverage – fantasticsid Oct 10 '11 at 8:53
2  
There's tons of template code which is evaluated at compile time. What does "code coverage" mean for that? Normal code coverage is determined at run time. – MSalters Oct 10 '11 at 9:39
@MSalters: I would suppose code coverage for the runtime part, but I've never seen a tool which would indicate this for each instanciation of the template. I guess there is an inlining issue... – Matthieu M. Oct 10 '11 at 12:03
feedback

4 Answers

Parasoft CPP test is a good tool for various analysis including code coverage and static analysis. This is good for digging into multithreading as well.

http://www.parasoft.com/jsp/products/cpptest.jsp

Here are 10 good open soure tools for code coverage :

http://open-tube.com/10-code-coverage-tools-c-c/

link|improve this answer
feedback

TestCocoon is a great tool to try, better than gcov with good tools and report facilities. As templates are compile-time beasts, I'm not sure what coverage information you want to get ?

my two cents

link|improve this answer
feedback

Our C++ Test Coverage tool provides test coverage on template bodies, or at least those templates that are defined in files you specify for it to cover.

It doesn't distinguish instantiations of templates.

If you have a multi-threaded application, the tool will record the branches executed by all threads, if you configure the tool to use flags that are atomically writable (typically the natural word size of the CPU [32 or 64 bits]. (If you don't do this, you may end up with a thread race in updating the coverage flags and you can lose a bit of coverage. This isn't a defect of the tool; its a consequence of unsynchronized access to the storage holding probe data.)

For race detection, OP needs to find a race detection tool; test coverage tools won't do this.

link|improve this answer
feedback

I work on a large product and we used a third party app called BullsEye for coverage testing. It worked wonders.

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.