I am using GCC version 3.3.6.When I instrument my object files with -fprofile-arcs and -ftest-coverage, the appropriate *.bb and *.bbg files are created.
I am recently using gc开发者_StackOverflow社区ov to collect the code coverage info. gcov plays well with executable application :) , but when I try to load a .so file, I got this error: unknown symbol
I\'m using gcov to measure coverage in my C++ code.I\'d like to get to 100% coverage, but am hampered by the fact that there are some lines of code that are theoretically un-hittable (methods that are
I\'m experimenting with gcov using mingw gcc 4.4.0. I\'ve been getting some interesting but strange results. A common pattern is something like this...
I\'m running gcov (through lcov) over a medium-sized project. It\'s had the CPU at close to 100% for quite a whi开发者_JS百科le (not sure exactly how long, but over 30 minutes). The memory isn\'t ball
I have a Cocoa application which uses an installer. I want to be able to run code coverage over the code (after it has been installed).
I have successfully set up an autotools project where the tests compiles with开发者_开发百科 instrumentation so I can get a test coverage report.
output of gcov says no of lines executed 70 % of 10 but my code has more than 10 lines.. it does not count braces , else statement
I have large project to analyse. How to use gcov or lcov for it. I found plenty of document for gcov for a si开发者_运维知识库ngle C file.
I\'ve recently begun unit testing an app I write for the iPhone. I have the basics of creating my own tests down, even if it seems a little sub-optimal. I am, however, having real trouble setting up c