Skip to content

Commit 01d5e75

Browse files
authored
fix LH and LF calculation (jandelgado#4)
1 parent af019e7 commit 01d5e75

File tree

5 files changed

+17
-10
lines changed

5 files changed

+17
-10
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# changelog for gcov2lcov
22

3+
## 1.0.2 [2020-04-25]
4+
5+
* fix calculation of LH and LF values which led to wrong calculation of
6+
test coverage in coveralls
7+
38
## 1.0.1 [2020-04-25]
49

510
* avoid duplicate DA records for same lines (see

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ test:
88
go test ./... -coverprofile coverage.out
99
go tool cover -func coverage.out
1010

11-
inttest:
11+
inttest: build
1212
./bin/gcov2lcov -infile testdata/coverage.out -outfile coverage.lcov
13-
diff testdata/coverage_expected.lcov coverage.lcov
13+
diff -y testdata/coverage_expected.lcov coverage.lcov
1414

main.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,6 @@ func writeLcovRecord(filePath string, blocks []*block, w io.StringWriter) error
112112
// Loop over functions
113113
// FNDA: stats,name ?
114114

115-
// Loop over lines
116115
total := 0
117116
covered := 0
118117

@@ -123,9 +122,6 @@ func writeLcovRecord(filePath string, blocks []*block, w io.StringWriter) error
123122
for _, b := range blocks {
124123
// For each line in a block we add an lcov entry and count the lines.
125124
for i := b.startLine; i <= b.endLine; i++ {
126-
if b.covered < 1 {
127-
continue
128-
}
129125
coverMap[i] += b.covered
130126
}
131127
}
@@ -135,9 +131,13 @@ func writeLcovRecord(filePath string, blocks []*block, w io.StringWriter) error
135131
for _, line := range lines {
136132
err = writer(err, "DA:"+strconv.Itoa(line)+","+strconv.Itoa(coverMap[line])+"\n")
137133
total++
138-
covered += coverMap[line]
134+
if coverMap[line] > 0 {
135+
covered++
136+
}
139137
}
140138

139+
// LH:<number of lines with a non-zero execution count>
140+
// LF:<number of instrumented lines>
141141
err = writer(err, "LF:"+strconv.Itoa(total)+"\n")
142142
err = writer(err, "LH:"+strconv.Itoa(covered)+"\n")
143143

main_test.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -90,10 +90,11 @@ SF:main.go
9090
DA:6,1
9191
DA:7,1
9292
DA:8,1
93+
DA:9,0
9394
DA:10,2
9495
DA:11,2
95-
LF:5
96-
LH:7
96+
LF:6
97+
LH:5
9798
end_of_record
9899
`
99100
assert.NoError(t, err)

testdata/coverage_expected.lcov

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ DA:46,1
55
DA:47,1
66
DA:48,1
77
DA:49,1
8+
DA:50,0
89
DA:58,1
9-
LF:6
10+
LF:7
1011
LH:6
1112
end_of_record

0 commit comments

Comments
 (0)