tendermint/test/test_cover.sh

14 lines
334 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
2017-02-20 18:51:00 -05:00
go test -v -timeout 30m -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