views:

739

answers:

4

Do you know any Open source C++ Code Coverage tool that support a decent GUI to facilitate browsing the result?

Thanks.

EDIT: I forgot to mention, My code is developed Using MFC so I need a tool that supports Windows.

+2  A: 

I've used gcov with good results. However that is a command line tool.

There is a GUI for it ggcov. I have not tried it but give it a try. The backend is obviously gcov, as you can tell from the name ;)

hhafez
Does it support multithreaded code? Last time I tried couldn't make it work.
Arkaitz Jimenez
It should support multi threaded code just fine, What problems did you have?
hhafez
+3  A: 

Check out lcov (it uses gcov as a back end too). We use that in a continuous integration environment; renders results in HTML

LaszloG
A: 

Not open source, but has a great GUI. See SD C++ Test Coverage. Also handles many dialects of C++: ANSI, GCC 2/3/4, MS Visual C++ 6, MS VC++ 2008, managed C++, etc.

Ira Baxter
A: 

try Bullseye tool

Funsuk Wangadu
Not open source.
Ira Baxter