Closed gstemp closed 7 years ago
Can you provide me an example file(s) which I could use to test that? I assume it could be related to #14 but I'm not sure
@gstemp any update?
I can't share the proprietary project where this occurred, and I haven't had time to try to create a "sample" project with this behavior. So let's close this issue and I'll reopen at a later date if needed. Thanks.
Using lcov-result-merger (1.2.0) to combine coverage reports from targets running the same binary, the report loses the function coverage that can be seen in the individual report generated from each target separately.
My workflow was as follows:
lcov -d . -c --to-package coverage_target1
on target1lcov -d . -c --to-package coverage_target2
on target2coverage_target1
andcoverage_target2
to build-machinelcov --from-package
on the copied files (creatingtarget1.info
andtarget2.info
)lcov-result-merger
on the two .info files, creatingmerged.info
genhtml
ontarget1.info
,target2.info
, andmerged.info
genhtml summary on
target1.info
:genhtml summary on
target2.info
:genhtml summary on
merged.info
(output oflcov-result-merger
):Note that the function coverage is missing from the merged result.