I want to get code coverage with GCOV, I set build setting by http://developer.apple.com/library/mac/#qa/qa2007/qa1514.html

  • add "-lgcov" to "Other Linker Flags"
  • check "Instrument Program Flow"
  • check "Generate Test Coverage Files"

but I can't produce the .gcda file, could anyone help?

link|improve this question
Upvoted as I'm having the same issue. SDK 4.2.1, XCode 3.2.5 – drekka Jan 13 '11 at 13:12
I'm not sure how xcode works, but you do know that compiling only produces .gcno files - you have to run the application and make it quit to produce .gcda files and then you have to run gcov, possibly several times, to produce .gcov files. – quamrana Mar 3 '11 at 15:05
feedback

2 Answers

I have posted the settings and configurations that worked for me at Code coverage not showing results using Xcode + gcov

link|improve this answer
feedback

The simulator has to close before the gcda files get generated. So, when I run GHUnit I have to close this app first. There's also a setting in the plist to kill the app when it closes, rather than have it sit there ready to restart.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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