gcovlcov
gcovlcov is a utility that converts and aggregates code coverage data produced by GCC's gcov into the LCOV data format. It is used to generate an lcov.info file that can be consumed by the lcov tooling and by genhtml to produce HTML coverage reports. The tool is typically employed in C and C++ projects that rely on GCC coverage instrumentation.
gcovlcov operates by reading the coverage data generated during test execution, including the .gcno and .gcda
In a typical workflow, a project is compiled with coverage options (-fprofile-arcs -ftest-coverage or --coverage), tests
gcovlcov is part of the broader ecosystem surrounding GCC coverage tooling. Availability and exact syntax can