tendermint/test/test_cover.sh

15 lines
335 B
Bash
Raw Normal View History

2016-09-25 02:02:54 -07:00
#! /bin/bash
PKGS=$(go list github.com/tendermint/tendermint/... | grep -v /vendor/)
set -e
2016-09-25 02:02:54 -07:00
echo "mode: atomic" > coverage.txt
for pkg in ${PKGS[@]}; do
2017-02-20 15:51:00 -08:00
go test -v -timeout 30m -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