3

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

Ferruccio
  • 98,941
  • 38
  • 226
  • 299

3 Answers3

3

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

Galwegian
  • 41,475
  • 16
  • 112
  • 158
3

gcov from the GNU tools.

starblue
  • 55,348
  • 14
  • 97
  • 151
1

Should be possible with valgrind:

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

Ruben Vermeersch
  • 1,933
  • 1
  • 18
  • 27