1
vote
1answer
13 views
gcov creates .gcov files in the current directory. Is ther 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?
0
votes
1answer
11 views
More detail about, and non-trivial output from, gcov -f
All the GNU gcov manual online at http://gcc.gnu.org/onlinedocs/gcc/Invoking-Gcov.html#Invoking-Gcov says about gcov -f option is:
-f
--function-summaries Output summaries fo …
3
votes
5answers
736 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 k …
1
vote
1answer
51 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 …
4
votes
1answer
194 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 in …
2
votes
1answer
49 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 …
1
vote
1answer
60 views
Does gcov give code coverage analysis for assembly language code.
Hello,
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 d …
1
vote
1answer
56 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 co …
2
votes
2answers
162 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 …
0
votes
2answers
217 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 e …
3
votes
5answers
868 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 …
1
vote
1answer
127 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).
