I'm trying to set up code coverage in Xcode 4.5. To do so, I turned on Generate Test Coverage Files and Instrument Program Flow for debug setting. According to http://meandmark.com/blog/2012/08/xcode-4-generating-code-coverage-files-with-llvm/ that's all you need. However, now the linker complains that it can't find:
I tried to find libprofile_rt.dylib, but it doesn't seem to exist anymore. What else is needed to generate code coverage files?
Code coverage is a feature in Xcode 7 that enables you to visualize and measure how much of your code is being exercised by tests. With code coverage, you can determine whether your tests are doing the job you intended.
After a test run is completed, Xcode takes the LLVM coverage data and uses it to create a coverage report in the Reports navigator, seen in the Coverage pane. It shows summary information about the test run, a listing of source files and functions within the files, and coverage percentage for each.
The code coverage option can collect data to report on tests of correctness and of performance, whether unit tests or UI tests. You enable code coverage by editing the scheme's Test action.
The code coverage option can collect data to report on tests of correctness and of performance, whether unit tests or UI tests. You enable code coverage by editing the scheme's Test action. Select Edit Scheme from the scheme editor menu.
Under the target build setting (be sure to select all)
Set:
I also ran into these linker errors. I saw the errors using Xcode 4.2 and 4.3. I'm not sure if they still are there in 4.5.
To solve it I added this file from the llvm project to my unit test code project. To get it to build on my Mac I deleted the win32 and sys includes and replaced the #include "llvm/Support/DataTypes.h"
include with #include "stdint.h"
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With