Tagged Questions

16
votes
2answers
499 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
452 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. ...
8
votes
3answers
684 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 ...
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
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
2answers
247 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, ...
3
votes
3answers
101 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
1answer
310 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 ...
2
votes
3answers
209 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
618 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
834 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
836 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
656 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
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
900 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
1answer
86 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
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
2answers
467 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
766 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
vote
0answers
91 views

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 while (not sure exactly how long, but over 30 minutes). The memory isn't ballooning. It seems ...
1
vote
1answer
120 views

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). This is not the usual unit-test scenario where a single binary ...
1
vote
2answers
634 views

Undefined symbols when attempting to use CoverStory with iPhone app: _vproc_transaction_end, _vproc_transaction_begin

After following these steps to set up an iphone project with CoverStory, my build fails with two linker errors. Undefined symbols: "_vproc_transaction_end", referenced from: _gcov_exit in ...
1
vote
1answer
306 views

Error on syntax for generating coverage data from multiple files using lcov in Windows

I would like some help... I'm having trouble coming up with the syntax to generate coverage data from multiple files using lcov in Windows. I have gcov, lcov and genhtml installed on cygwin (I'm ...
1
vote
1answer
431 views

Does gcov give code coverage analysis for assembly language code

I have an application which i build using gcc on linux host for ARM target processor. This generated arm executable i execute on a ARM development board i have. I want to do some code coverage ...
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 ...
0
votes
0answers
5 views

CMake and lcov: gcno files not found

I am trying to get code coverage on my CMake based project (which consists of several targets). First I generate gcno files with: lcov -b . -d . -o coverage.output --capture --initial The *.gcno ...
0
votes
0answers
43 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
51 views

code coverage on iphone using gcov not reporting traced lines of code

I have setup the xcode (3.2.6) sdk 4.3 for reporting code coverage as per apple guideline. After running the project, the .gcno and .gcda files get generated. But always the coverage shows as 0%. The ...
0
votes
0answers
36 views

Gcov coverage of long macro

I have a lot of C code, which is written via macro. This code is from huuuge library, and I want to write a test for this library (only one fixed part of it). I want to cover most branches of this ...
0
votes
2answers
399 views

shared library coverage test with gcov [Linux/Fortran]

I am trying to perform a coverage test of a shared library. I have chosen for gcov/lcov due to the fact, that it is free and open source, which means, I can try it immediately (commercial software ...
0
votes
3answers
533 views

How to setup environment variables for gcov on iPhone

I have overcome all problems with setting up gcov on my iPhone project but now I am getting the following: profiling:/Users:Cannot create directory Does anyone have any suggestions as to what I ...
0
votes
0answers
403 views

No test coverage files generated for Unit Test bundle in Xcode [closed]

Possible Duplicate: Why doesn't gcov report any lines being covered by my unit tests? The Problem I've got a Cocoa project on the desktop and I'm using Xcode 3.2.1 on Snow Leopard ...
-1
votes
0answers
22 views

echo: write error: Bad file descriptor while running covergae tool

while running coverage tool i'm getting the following error shcov pkgcheck_bac.sh pkgcheck_bac.sh: line 5: echo: write error: Bad file descriptor i'm using google shcov code ...