lcov
lcov copied to clipboard
LCOV
Hi, I would like to ask, if there is a way to do properly only **conditional** branch coverage with LCOV/GCOV. I found this simple project which is showing the problem:...
Hi, There is an issue for the abstract class. Based on gcc, compiler create a hidden base destructor, and it is included as the target function of lcov. Accordingly, the...
I'm using lcov to generate coverage reports for our test suite, but the tracefile seems to have coverage data only for header files. The error messages indicate that the source...
Hi, I am trying to trace the linux kernel with lcov. I have build and successfully installed kernel with the following configurations enabled: CONFIG_DEBUG_FS=y CONFIG_GCOV_KERNEL=y CONFIG_GCOV_PROFILE_ALL=y CONFIG_GCOV_FORMAT_AUTODETECT=y I want to...
Hi All, I'm trying to understand why this virtual method in an abstract class is not covered if there are hundreds of calls to it from derived classes. For the...
Universal diffs as generated by git (for example) have some compatibility problems regarding what `lcov --diff` expects. This pull request fixes a few of those problems to make it easier...
### Versions Running `LCOV version 1.12` on `macOS Sierra 10.12.5` and g++ `Apple LLVM version 8.1.0 (clang-802.0.42)` ### Code snippet Consider the following simple c++ code: ```c++ #include int myFn(int...
lcov is able to show: - line coverage - branch coverage - function coverage I understand function coverage to which percentage functions are entered and thereby tested. From my point...
Hi, We have a request to "view all files in all directories recursively and sort them" in the html output of genhtml. This is after running lcov on a C++...
Add some option to report functions with template as single function in generated (html) reports ``` template type sum( type x, type y) { return x+y; } int main() {...