https://github.com/tendermint/tendermint
Raw File
Tip revision: e236302256b8b0b75441e8e44c6d0d3f5b5152c6 authored by Ethan Buchman on 28 October 2017, 04:06:53 UTC
Merge pull request #793 from tendermint/release-v0.12.0
Tip revision: e236302
test_cover.sh
#! /bin/bash

PKGS=$(go list github.com/tendermint/tendermint/... | grep -v /vendor/)

set -e
echo "mode: atomic" > coverage.txt
for pkg in ${PKGS[@]}; do
	go test -v -timeout 30m -race -coverprofile=profile.out -covermode=atomic "$pkg"
	if [ -f profile.out ]; then
		tail -n +2 profile.out >> coverage.txt;
		rm profile.out
	fi
done
back to top