I want to run some code coverage analysis (using CoverStory) on our iPhone app's unit tests in XCode automatically when the tests run. the problem is that we're using the Google Toolbox for Mac, and the way that the tests seem to run doesn't actually generate code coverage reports from gcov, so the analysis i get is out of date unless i...
After following these steps to set up an iphone project with CoverStory, my build fails with two linker errors.
Undefined symbols:
"_vproc_transaction_end", referenced from:
_gcov_exit in libgcov.a(_gcov.o)
_vproc_transaction_end$non_lazy_ptr in libgcov.a(_gcov.o)
(maybe you meant: _vproc_transaction_end$non_lazy_ptr...
I have overcome all problems with setting up gcov on my iPhone project but now I am getting the following:
profiling:/Users:Cannot create directory
Does anyone have any suggestions as to what I might be doing wrong?
I originally setup gcov following Google's instructions which can be found by Googling "UsingCoverStory"
UPDATE:
Okay, ...