Feature #8355
closedCalculate lines coverage without empty lines and some preprocessor directives
0%
Description
To calculate statistics on covered lines the total number of lines in files is used while most likely, say, empty lines and some preprocessor directives should be ignored.
Updated by Evgeny Novikov about 7 years ago
We discussed that at the moment the best way to calculate meaningful lines of code is to get this on the basis CPAchecker coverage reports. But the coverage format can be remained as is. The only change to it is that there can be lines with zero verifier passes. The total number of meaningful lines of code can be calculated by summing both covered (the number of passes is more than zero) and uncovered (the number of passes is zero) lines.
Updated by Alexey Polushkin about 7 years ago
I've implemented in Klever core supporting of lines with zero passes. The branch is 'empty_lines_coverage'
Updated by Evgeny Novikov about 7 years ago
- Status changed from New to Resolved
Let's Ilja will examine this feature after Vladimir will implement corresponding improvements within Bridge.
Updated by Ilja Zakharov about 7 years ago
- Status changed from Resolved to Open
Need to update this according to the Klever version after refactoring.
Updated by Evgeny Novikov about 7 years ago
Please, rebase it on top of the latest master.
Updated by Evgeny Novikov about 7 years ago
- Category changed from Tasks generation to Results processing
Updated by Alexey Polushkin about 7 years ago
- Status changed from Open to Resolved
Resolved in 'new_report_archives' branch
Updated by Evgeny Novikov about 7 years ago
- Status changed from Resolved to Closed
I merged the branch that has this feature (multicoverage) to master in 37f0c082.