tendermint/test/test_cover.sh

14 lines
329 B
Bash
Raw Normal View History

2016-09-25 18:02:54 +09:00
#! /bin/bash
PKGS=$(go list github.com/tendermint/tendermint/... | grep -v /vendor/)
set -e
echo "mode: atomic" > coverage.txt
for pkg in ${PKGS[@]}; do
2016-12-17 15:16:58 -05:00
go test -timeout 20m -race -coverprofile=profile.out -covermode=atomic $pkg
2016-09-25 18:02:54 +09:00
if [ -f profile.out ]; then
tail -n +2 profile.out >> coverage.txt;
rm profile.out
fi
done