views:

1096

answers:

3

Are there any free code coverage tools for native (not managed) code? For either Windows or Linux platforms?

+2  A: 

EMMA is a free Java code coverage tool, and there's NCover for .NET

Galwegian
+3  A: 

gcov from the GNU tools.

starblue
+1  A: 

Should be possible with valgrind:

http://benjamin-meyer.blogspot.com/2007/12/valgrind-callgrind-tools-part-3-code.html

Ruben Vermeersch