Workaround coverage bug part 2 (#16906)
* Workaround coverage bug part 2 Just grep away bad lines from coverage files. Signed-off-by: Andrew Thornton <art27@cantab.net> * try again Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
parent
cbf05c3f79
commit
83640a595b
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -385,8 +385,8 @@ test\#%:
|
|||
|
||||
.PHONY: coverage
|
||||
coverage:
|
||||
grep -v '^0$$' coverage.out > coverage-bodged.out
|
||||
grep -v '^0$$' integration.coverage.out > integration.coverage-bodged.out
|
||||
grep '^\(mode: .*\)\|\(.*:[0-9]\+\.[0-9]\+,[0-9]\+\.[0-9]\+ [0-9]\+ [0-9]\+\)$$' coverage.out > coverage-bodged.out
|
||||
grep '^\(mode: .*\)\|\(.*:[0-9]\+\.[0-9]\+,[0-9]\+\.[0-9]\+ [0-9]\+ [0-9]\+\)$$' integration.coverage.out > integration.coverage-bodged.out
|
||||
GO111MODULE=on $(GO) run -mod=vendor build/gocovmerge.go integration.coverage-bodged.out coverage-bodged.out > coverage.all || (echo "gocovmerge failed"; echo "integration.coverage.out"; cat integration.coverage.out; echo "coverage.out"; cat coverage.out; exit 1)
|
||||
|
||||
.PHONY: unit-test-coverage
|
||||
|
|
Reference in a new issue