lcov
lcov copied to clipboard
LCOV
When generating the .html I'd like to specify a different threshold for line, branch, and function coverage. For branch and function coverage I'm using: ``` genhtml_function_med_limit=MED_VALUE genhtml_function_hi_limit=HI_VALUE genhtml_branch_med_limit=MED_VALUE genhtml_branch_hi_limit=HI_VALUE ```...
A software product is compiled on different systems with different compilers. E.g. this source code ```c #ifdef WIN32 printf("WIN32\n"); #else printf("NOT WIN32\n"); #endif ``` is compiled on Linux with gcc...
Report produced by genhtml can have a low contrast. This is mainly noticeable when using the `--dark-mode` option, where `tableHead` text is black on grayish blue, which gives a poor...
The code at lcovutil.pm:4222 in the 2.0 release is incorrect. It uses `$lcovutil::ERROR_INCONSISTENT` which doesn't exist, but it should be `$lcovutil::ERROR_INCONSISTENT_DATA`. This was fixed in commit 6f48bf2, which is not...
```console + cd lcov-2.0 + /usr/bin/make -O -j48 V=1 VERBOSE=1 test if [ "x" != 'x' ] && [ ! -d tests/ ]; then \ mkdir tests/ ; \ fi...
I installed lcov on Windows 11, msys2, mingw64. (mingw-w64-x86_64-lcov) When running from a directory that contained sane .gcno file, I was greeted with: $ lcov -i -c -d .. --config-file...
In our SmartRedis project (https://github.com/CrayLabs/SmartRedis), we use LCOV as part of our CI/CD pipeline to track code coverage across a series of test cases. With LCOV version 1.12, this is...
Hi there, I'm investigating line coverage for a new feature that I'm introducing to [Mbed TLS](https://github.com/AndrzejKurek/mbedtls/tree/lcov-bad-coverage), and I'm seeing inconsistencies when it comes to line coverage (branch information seems fine):...
Version 2 of LCOV has some problems in the conda-forge package because of some dependencies: https://github.com/conda-forge/lcov-feedstock/pull/10 Maybe someone here has an idea how to approach this. Cheers, Sebastian