tendermint/test/test_cover.sh

15 lines
312 B
Bash
Raw Permalink Normal View History

2016-09-25 02:02:54 -07:00
#! /bin/bash
PKGS=$(go list github.com/tendermint/tendermint/...)
2016-09-25 02:02:54 -07:00
set -e
2016-09-25 02:02:54 -07:00
echo "mode: atomic" > coverage.txt
for pkg in ${PKGS[@]}; do
2018-06-22 10:18:11 -07:00
go test -timeout 5m -race -coverprofile=profile.out -covermode=atomic "$pkg"
2016-09-25 02:02:54 -07:00
if [ -f profile.out ]; then
tail -n +2 profile.out >> coverage.txt;
rm profile.out
fi
done