Tagged Questions

20
votes
7answers
8k views

Where is the gcov symbols?

I'm trying to compile a simple app with gcov and getting the following link errors: gcc AllTests.o CuTestTest.o CuTest.o -o TestTest AllTests.o: In function `global constructors keyed to ...
16
votes
2answers
500 views

What is the branch in the destructor reported by gcov?

When I use gcov to measure test coverage of C++ code it reports branches in destructors. struct Foo { virtual ~Foo() { } }; int main (int argc, char* argv[]) { Foo f; } When I run ...
9
votes
4answers
579 views

gcov and switch statements

I'm running gcov over some C code with a switch statement. I've written test cases to cover every possible path through that switch statement, but it still reports a branch in the switch statement as ...
8
votes
1answer
262 views

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... 5162: 66: std::string::iterator i = ...
6
votes
1answer
2k views

gcov warning: merge mismatch for summaries

Can anyone tell me what the gcov message "Merge mismatch for summaries" means? I have found the message in the gcc source here: http://www.opensource.apple.com/source/gcc/gcc-5646/gcc/libgcov.c It ...
6
votes
1answer
329 views

Can gcc/gcov be made to output coverage stats to a location other than the source folder?

When using gcc with -fprofile-arcs and -ftest-coverage, when the resulting executable terminates, it tries to create .gcda output files in the same location as the .o files used to compile the ...
2
votes
1answer
1k views

gcov: producing .gcda output from shared library?

Is it possible to produce gcov data files (.gcda files) by running an executable linked to a shared library built with the --coverage option? Basically, I have the main library consisting of multiple ...
2
votes
1answer
658 views

With gcov, is it possible to merge to .gcda files?

I have the same source files (C and Obj-C) being compiled into two targets: the unit test executable and the actual product (which then gets integration tested). The two targets build into different ...
1
vote
0answers
33 views

gcov to ignore standard library branch?

I'm trying to use gcov/lcov to generate a report for my test suites for my source code. Is there a way to tell gcov to ignore the branches incurred by standard libraries. For example, stringstream ...
1
vote
0answers
60 views

Unable to generate *.c.gcov file

I have the following structure: Source_code/build/unix/Makefile Source_code/code/Lib/src/lib1/a.c The -fprofile-arcs and -ftest-coverage options are mentioned in the gcc compilation option. It ...
1
vote
1answer
105 views

Crossprofiling with gcov, but GCOV_PREFIX and GCOV_PREFIX_STRIP is ignored

I want to use GCOV to make code coverage but the tests will run on another machine. So the hard wired path to .gcda files in the executable won't work. In order to change this default directory I can ...
1
vote
1answer
87 views

code coverage - which run covers which code?

The POC: https://gist.github.com/1197309 I would like to determine which of the three runs ./prime, ./prime 0 and ./prime 1 have covered which code and have it nicely displayed in the HTML report. ...
1
vote
1answer
304 views

What are your tips for interpreting gcov output in order to improve coverage?

I'm successfully using gcov in my project: I can build my project with gcov flags: -fprofile-arcs -ftest-coverage I link with the -lgcov option I run my unit test program and lots of gcda and gcno ...
1
vote
2answers
472 views

gcov on larger projects (static libraries, …)

I'm working on larger project which has the following directory layout: Source MyA aa.cpp ab.cpp ac.cpp MyB ba.cpp bb.cpp bc.cpp MyTest testaa.cpp testab.cpp testac.cpp ...
1
vote
1answer
343 views

gcov creates .gcov files in the current directory. Is there any way to change this?

I'm running gcov/gcc 4.1.2 on RHEL. When I want to specify a directory for the gcov files. Any ideas on how to do this?
1
vote
1answer
243 views

Gcov reporting unexpected cover results

I made some changes to a library to keep it inline with a project. I ran the test and everything still passed but the coverage is no longer 100%. I investigated and saw that the code is executed just ...
1
vote
1answer
295 views

disable gcov in gcc build

Anyone know how, when making GCC, to tell it not to build gcov? It's giving me lots of errors for my target (powerpc-wrs-vxworks).
0
votes
0answers
44 views

Code coverage setup for Unit tests target

I am facing one issue regarding code coverage setup for Unit tests. I created unit test target for my project. Generate Test Coverage Files and Instrument Program Flow i made it YES for the Unit test ...
0
votes
0answers
89 views

gcov - building and running in different machines

I am compiling instrumented build using gcc, which generates .gcno files along with the object files. However I need to run the build in a test environment, and the .gcda files are generated in the ...
0
votes
1answer
115 views

Looking for a way to exclude files used by geninfo/genhtml

Additional tags: genhtml, geninfo We are trying to use geninfo and genhtml (alternative to gcovr, see here) to produce an html page using coverage provided by gcov. geninfo creates lcov-tracefiles ...
0
votes
0answers
201 views

gcov final link failed

While compiling my project with gcov support I am facing the below error Following are flags information i have while compiling compiler flags: CXXFLAGS="-Wno-deprecated -g -ggdb -fprofile-arcs ...
0
votes
1answer
173 views

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 please help ..