https://github.com/tendermint/tendermint
Raw File
Tip revision: b467515719e686e4678e6da4e102f32a491b85a0 authored by Ethan Buchman on 10 July 2017, 20:22:09 UTC
Merge pull request #576 from tendermint/release-v0.10.2
Tip revision: b467515
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