-
Beta Was this translation helpful? Give feedback.
Answered by
henry2cox
Feb 1, 2024
Replies: 1 comment
-
Yes.
Merging is obviously a problem/will cause misleading results if your input data does not correspond to the same source code version. If the documentation seems unclear: please feel free to suggest an update/clarification. That might help others as well. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
etaylork
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes.
Aggregation is essentially a set union operation:
This is legitimate - say, if your data sets reflect different compile options (e.g.,
#ifdef
s or template specializations in your code).Merging is obviously a problem/will cause misleading results if your input data does not correspond to the same source code version.
lcov will check that for you if you like - see the
--version-script
and/or--checksum
options.genhtml will use the same
--version-script
callback to check that the displayed file ma…