2

I have large project to analyse. How to use gcov or lcov for it. I found plenty of document for gcov for a single C file. Not much document about lcov too. I'll be thankful for any pointers or tips or links

webminal.org
  • 44,948
  • 37
  • 94
  • 125

2 Answers2

2

Havn't you read the example (contained in the dist) and the docs about the gvoc, genhtml etc. There is described that you can analyze as many files as you wish (--zerocounters only for the first one) and then use the same analyze file for the others. So the result would be coverage for all files.

EDIT: Have you read the README on the web site

khmarbaise
  • 92,914
  • 28
  • 189
  • 235
0

Check the man pages for lcov - all options are described in there.

ratkok
  • 739
  • 9
  • 15