Tagged Questions
LCOV is a graphical front-end for GCC's coverage testing tool gcov
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 ...
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
2answers
624 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
1answer
841 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
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
2answers
390 views
Running genhtml using cygwin Perl.exe in Windows
I'm trying to run genhtml using perl.exe from Cygwin in Windows.
I have installed cygwin and placed genhtml in the bin directory of cygwin. I went to that directory and used the command line in ...
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 ...
1
vote
0answers
16 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
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
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
378 views
Code coverage for source files using lcov
I am using lcov and genhtml to generate code coverage reports. With the following directory structure, I am able to get the code coverage for the source files located in the tests/ directory, but am ...
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
0answers
92 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
2answers
469 views
Unable to merge coverage data using genhtml
I'm using genhtml (in Windows under cygwin) to generate a unit test coverage report from 2 coverage data files. They are all coverage data from the same unit test source file.
However, when I ...
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 ...
0
votes
1answer
10 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
130 views
cygwin lcov genhtml: ERROR: cannot create directory ?
I am executing the following command, which is resulting in the error below. I have chmod 777 to all directories involved. The css and image files are written successfully, but the html file(s) is not ...
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
38 views
lcov coverage by filename
I am able to generate coverage data by directory hierarchy like:
top
-include
-this.hpp
-that.hpp
-src
-this.cpp
-that.cpp
I want same thing but on a single page:
...
0
votes
0answers
66 views
what is the usage of lcov -diff option?
Is it useful for finding out total number of lines covered as part of the test cases, in the new lines added of the source code to the prior version ?
0
votes
1answer
200 views
Having a shell script refer to XCode build paths
I have a shell script that runs lcov (test coverage) on an iOS project that I have Hudson. Hudson's copy of this project is derived from a Git repository. The way that I have set up now is that ...
0
votes
1answer
92 views
How to upgrade lcov if you already have one in ubuntu?
I have lcov installed on my ubuntu 10.1. My lcov version is 1.8, how do I upgrade to the latest version, which is 1.9?
0
votes
2answers
570 views
How to use lcov test coverage tool with Hudson continuous integration?
In my environment developers use lcov from command line when working with source code's module tests.
I would like to know if there is a way to easily add reports from lcov to Hudson's builds? I ...
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 ..
0
votes
2answers
2k views
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 single C file.
Not much document about lcov too. I'll be thankful for any pointers or tips ...
0
votes
1answer
503 views
Keep getting gcov error when trying to run lcov in Windows command line
I was wondering what else is actually needed in order to run lcov in windows command line? Every time when I run perl lcov, I always get a reminder or errors similar to the following:
geninfo: ...
0
votes
1answer
601 views
Viewing LCOV file in Windows
Background: I have used JsTestDriverCoverage and generated a test coverage report for my Javascript unit tests. However it is in LCOV format. As a Windows user running on Windows 2003, I can't just ...