Top "Gcov" questions

gcov is a code coverage tool for GCC

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 …

c++ code-coverage gcov
GCOV: What is the difference between --coverage and --ftest-coverage when building with GCC?

Trying to get code coverage up and running, and I'm just reading documentation first. I found a few articles that …

c++ gcc code-coverage gcov
How do the code coverage options of GCC work?

Consider the following command: gcc -fprofile-arcs -ftest-coverage main.c It generates the file, main.gcda, which is to be used …

c gcc code-coverage gcov
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. …

windows gcov lcov
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, …

c++ cmake gcov
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 …

gcc code-coverage gcov lcov
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 …

c gcc gcov
Adding lcov to Hudson

rather new to Hudson here. I was wondering, how would one integrate lcov with it? How would I install the …

hudson code-coverage gcov lcov
Can GCov be used in windows?

Can I install gcov tool in windows? Or can I take plug-in of this tool in eclipse in windows? I …

gcov
"Hidden symbol `atexit' is referenced by DSO" when using libtool with gcov

I have a C++ project that uses the GNU Autotools for its build scripts and libtool for linking. Recently I …

gcc ubuntu linker libtool gcov