diff options
author | Peter Eisentraut | 2017-08-11 03:33:47 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-09-29 12:54:34 +0000 |
commit | 4bb5a2536bcff5dfef9242818979faaa0659b1af (patch) | |
tree | 1c33379661fb4d0daca5760850352e8a234d4fcc /.gitignore | |
parent | 22d9764646d03ac7d3419c4fd0effd256568c922 (diff) |
Add lcov --initial
By just running lcov on the produced .gcda data files, we don't account
for source files that are not touched by tests at all. To fix that, run
lcov --initial to create a base line info file with all zero counters,
and merge that with the actual counters when creating the final report.
Reviewed-by: Michael Paquier <[email protected]>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore index 94e2c582f51..a59e3da3bef 100644 --- a/.gitignore +++ b/.gitignore @@ -21,7 +21,7 @@ objfiles.txt *.gcda *.gcov *.gcov.out -lcov.info +lcov*.info coverage/ coverage-html-stamp *.vcproj |