gcov
GCov and GCC, *.da Files Not Created
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.[详细]
2023-01-19 03:30 分类:问答can gcov deal with shared object?
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[详细]
2023-01-16 06:46 分类:问答How do I tell gcov to ignore un-hittable lines of C++ code?
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[详细]
2023-01-12 16:26 分类:问答How can I get more accurate results from gcov?
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...[详细]
2023-01-10 11:48 分类:问答Is it normal for gcov to peg the CPU at 100%
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[详细]
2023-01-06 13:14 分类:问答How can I run Gcov over an installed Cocoa application?
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).[详细]
2023-01-03 04:24 分类:问答Autotools automatic invocation of lcov after 'make check'
I have successfully set up an autotools project where the tests compiles with开发者_开发百科 instrumentation so I can get a test coverage report.[详细]
2022-12-31 04:22 分类:问答gcov line count is different from no of lines in source code
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[详细]
2022-12-29 22:34 分类:问答lcov or gcov -- how to large project analyze
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.[详细]
2022-12-29 05:58 分类:问答How to set up gcov for code coverage analysis in iPhone SDK?
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[详细]
2022-12-15 01:54 分类:问答