https://github.com/tendermint/tendermint
Raw File
Tip revision: e0542face6a752bcd9ebce169cafb3cbcd5af61f authored by William Banfield on 15 July 2022, 15:38:17 UTC
p2p: use fifo in test
Tip revision: e0542fa
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