Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

AFAIK, there isn't a free code coverage tool for C++.

share|improve this question
On which platform are you? – phloc Sep 18 '08 at 6:46
Windows platform. – all2one Sep 18 '08 at 8:18
possible duplicate of Free Testing / Code Coverage systems for C++ – Billy ONeal Nov 9 '10 at 15:34
possible duplicate of Open source C++ Code Coverage tool with GUI? – gotnull Dec 17 '12 at 4:15

closed as not a real question by Ram kiran, gotnull, DocMax, Deefour, valex Dec 17 '12 at 5:29

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

5 Answers

up vote 6 down vote accepted

Where I work, we are using a customized version of Covtool.

share|improve this answer
+1 for letting me know a new tool :) – neuro Jun 3 '10 at 18:34

gcov from the gnu-compiler works very well for me...

share|improve this answer
1  
Is it available on Windows? – all2one Sep 17 '08 at 15:01
Yes, in MinGW and Cygwin. – Janus Troelsen Dec 9 '11 at 23:53

Btw - since I've been asked in the comments: Yes, gcov it's also availabe for windows.

You just have to install the "unix like environment" called cygwin. The gnu-compiler is part of that. It works fine and will compile windows-applications as well.

You may have to write a makefile though.

www.cygwin.com

share|improve this answer
This doesn't work if you depend on Win32, which probably applies to most windows programs. – Billy ONeal Nov 9 '10 at 15:33
most win32 programs compile fine under cygwin. The entire windows-API is available. The only problem may be compiler dependent codes using inline assembler or so, but that's it. – Nils Pipenbrinck Nov 9 '10 at 18:12

I have used Test Cocoon and it works fairly well. Free under the GNU license. The documentation is somewhat sparse, but it comes with sample projects that are fairly straight forward to follow. Good coverage analysis, plus the ability to monitor running code without a test harness so you can do manual testing to get coverage results.

share|improve this answer
This is no longer available. – dex black May 23 '12 at 12:42
It has gone commercial at froglogic.com/squish/coco – dex black May 23 '12 at 12:42

You may also want to look at specific tools or options for the testing framework that is being used.

Is there a specific framework you are already using?

share|improve this answer
No, we are just using visual studio professional. – all2one Sep 18 '08 at 8:17

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