https://github.com/tendermint/tendermint
Raw File
Tip revision: 383a64dcfe78f0ce7db7a0901289709e323c06ce authored by Daniel Cason on 19 April 2022, 13:10:10 UTC
BLS: sign/verify benchmarks for blst and ostracon
Tip revision: 383a64d
test_cover.sh
#! /bin/bash

PKGS=$(go list github.com/tendermint/tendermint/...)

set -e

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