I'm using gcovr to generate code coverage for cobertura. Everything was working fine with xcode 4.6. Now I updated to xcode5 and everything I get is 0% coverage...
my setup:
- gcovr 3.0
- Xcode 5 (Apple LLVM 5)
- 'Generate Test Coverage Files' is set to YES
- 'Instrument Program Flow' is set to YES
and to command I use:
gcovr -r . --object-directory Build/Intermediates/myApp.build/Debug-iphonesimulator/myApp.build/Objects-normal/i386 --exclude '.*Tests.*' --exclude '.*KiwiUnitTest' --exclude '.*main.*' --xml > reports/coverage.xml
is someone having the same issue or better, have a solution? :)