Tagged Questions

gcov is a code coverage tool for GCC

learn more… | top users | synonyms

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 ...
13
votes
4answers
3k views

Why doesn't gcov report any lines being covered by my unit tests?

I am using Xcode 3.2 on 10.6, with the shipped version of gcov and default GCC compiler (both version 4.2.1). I have created a dependent Cocoa unit test bundle which is injected into my app, and ...
12
votes
4answers
453 views

What's the best C++ code coverage tool that works with templates?

I have used gcov for testing code coverage, but when it comes to templated c++ code it doesn't work so well. I use boost::spirit extensively and gcov seems to simply ignore templated spirit code. ...
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
2answers
404 views

iPhone: Cannot get simulator to generate .gcda profiling data files

I'm attempting to profile my code using the iPhone simulator. I've enabled Generate Test Coverage File and Instrument Program Flow and added -lgcov to the linker flags. According to everything I've ...
8
votes
3answers
688 views

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 ...
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 = ...
7
votes
2answers
719 views

Excluding certain functions from gcov/lcov coverage results

Is it possible to exclude certain functions or lines of code from the gcov coverage analysis. My code contains certain functions that are used for debugging, and are not exercised as part of my test ...
7
votes
2answers
2k views

Is there a way to focus lcov code coverage reports to just one or two directories?

I recently started using lcov to visualize my code coverage. It's a great tool. One thing I'm noticing is that it generates code coverage reports for all the files that I'm using - including those ...
6
votes
1answer
167 views

gcov and global destructors

MWE #include <iostream> struct Foo { Foo() { std::cout << "Constructing Foo " << this << std::endl; } ~Foo() { std::cout << "Destructing Foo " << ...
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 ...
5
votes
1answer
206 views

Understanding branches in gcov files

I'm trying to understand the output of the gcov tool. Running it with no options makes sense, but I'm wanting to try and understand the branch coverage options. Unfortunately it's hard to make sense ...
5
votes
2answers
248 views

Finding non-instantiated templates in C++ code

What is the best way to find uninstantiated templates in C++ Code? I have a code base that heavily uses templates. Of course, we want to make sure that the test coverage is high. For all used code, ...
5
votes
2answers
555 views

iPhone: How can I use gcov?

I'm trying to use gcov on iPhone Project and followed Apple's instruction described here, but it doesn't work. When I build and go configured project, .gcda file is created for each object file. But ...
5
votes
1answer
1k views

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 ...
3
votes
3answers
102 views

How to do code coverage on embedded

I write a project for a non POSIX embedded system so I cannot use gcc option --coverage (i don't have read or write). What else can I do to produce gcov like output. I do have an output function.
3
votes
3answers
639 views

gcov: cannot open graph file

I am trying to use gcov. I have this simple file a.c: int main() { return 0; } So I do gcc -fprofile-arcs -ftest-coverage a.c -o a ./a gcov a.c and I get a.gcno:cannot open graph file Am I ...
3
votes
1answer
82 views

How to force gcov to extract data, even when program is aborted

I'm using a test-generating tool called KLEE, that creates lots of tests for my C99-Code. Afterwards I run the tests and check line coverage with gcov. Gcov seems to update coverage data at the end ...
3
votes
2answers
389 views

gcov with CMake using a separate build directory

I'm struggling to get coverage information for gcov. No errors during compilation and linking, but when I run the executable, no coverage data is produced. I'm using CMake with a separate build ...
3
votes
1answer
311 views

Why is gcov creating Code Coverage data for STL Headers?

When I run gcov foo.cpp it not only generates the code coverage report for foo.cpp, but for all the STL headers used by foo.cpp. Is there a way to prevent this? It seems to ignore standard library ...
3
votes
1answer
324 views

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. I can get the report by running lcov in the source dir after a ...
3
votes
5answers
2k views

sed/awk: DOS to UNIX path substitution within a file

I have a file that contains this kind of paths: C:\bad\foo.c C:\good\foo.c C:\good\bar\foo.c C:\good\bar\[variable subdir count]\foo.c And I would like to get the following file: C:\bad\foo.c ...
2
votes
1answer
294 views

Code Coverage GCov not working with XCode 4.2 and iOS SDK 5

I've been trying to get GCov working with Xcode 4.2Build 4D199 on Lion with iOS SDK 5.0 to no avail. Has anyone had any luck with this? I'm using Google Tools For Mac for my unit tests and I've linked ...
2
votes
1answer
62 views

Getting 0 gcov coverage for a mac app

I have done the following but I am still getting 0% gcov coverage for my .app. Here is what I am doing: I am using Xcode 3.2.6, GCC 4.2 and am on Mac OSX 10.6. I duplicated the Debug config and ...
2
votes
3answers
211 views

Is there a way to merge two .gcda files into one?

I have several unit tests for an application, each of which is capable of generating .gcda files. I would like to be able to generate unified .gcda files which represent the coverage of my test suite ...
2
votes
1answer
94 views

How to find the coverage of a library opened using dlopen()?

I have a C++ library (.so) which is opened using dlopen() by another application. But I need to find the code coverage of this library while run within the application using gcov. Is it possible? If ...
2
votes
2answers
623 views

Adding lcov to Hudson

rather new to Hudson here. I was wondering, how would one integrate lcov with it? How would I install the tarball into a Hudson job?
2
votes
2answers
405 views

How do I get XCode4 to find libgcov.a

I've been building a static library to share between multiple iOS projects, and I want to use gcov (or any code coverage analysis tool) to tell me where I'm missing my tests. However, when I enable ...
2
votes
2answers
838 views

Code coverage with GCOV can't produce .gcda file

I want to get code coverage with GCOV, I set build setting by http://developer.apple.com/library/mac/#qa/qa2007/qa1514.html add "-lgcov" to "Other Linker Flags" check "Instrument Program Flow" ...
2
votes
1answer
840 views

How do I tell lcov where to find my .cpp & .h files?

My source and build tree looks like this (see Makefile to put object files from source files different directories into a single, separate directory?) after a make (which builds and runs ...
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 ...
2
votes
1answer
1k views

Is there any actively supported lcov port for windows

I measure coverage for my code using gcov library and I would like to generate coverage report in user-friendly format. I've found lcov utility for that, but it's not compatibile with Windows ...
2
votes
2answers
1k views

Setting up gcov in Xcode 3.1

I'm trying to setup my Xcode project to be instrumented with gcov so I can determine the code coverage of my unit tests. All of the documentation I find online talks about settings that I don't find ...
2
votes
2answers
901 views

Why does gcov report 0% coverage on a header file for a well used class?

I'm attempting to measure test coverage for the first time using gcov. Now that I'm past the initial learning curve, things seem to be going well, except for one little snag. I expect that it boils ...
1
vote
0answers
15 views

gcov froze when giving -a option?

When I do gcov . there is no problems. However, when I do gcov -a . gcov froze. The last few lines of the output is: File '/usr/include/boost/archive/detail/iserializer.hpp' Lines executed:78.18% of ...
1
vote
0answers
32 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
59 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
65 views

lcov : coverage of source for several executions

I've created simple hello word cpp app. Compiled it by passing gcc --coverage flag Executed the executable Generated coverage by invoking lcov --directory . --capture --output-file ic.info ...
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
4answers
217 views

Core dump and gcov coverage report

I'm doing stress testing on multi-threaded program and collecting coverage as well. As far as I know, gcov doesn't produce .gcda files when program is terminated by _exit() or some signals such as ...
1
vote
1answer
121 views

Version of gcov that supports code coverage for shared library

Which version of gcov supports the code-coverage of shared libraries?
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
1k views

C++ Using gcov and lcov problem?

I am using ubuntu 10.1, g++ compiler. I trying to use gcov and lcov for my C++ project. I manage to compile the gcov: g++ -fprofile-arcs -ftest-coverage main.cpp user.cpp game.cpp There is no ...
1
vote
4answers
189 views

x86 assembly profiling

Does anyone know a good tool that would give me x86 instruction execution count. I have looked at gcov, but would like to look at other option that might help me. My Ultimate goal is to be able to ...
1
vote
1answer
768 views

can gcov deal with shared object?

All I am recently using gcov 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 __gcov_merge_add. ...

1 2