quorum/build/test-global-coverage.sh

16 lines
421 B
Bash
Raw Normal View History

2015-08-18 13:46:48 -07:00
#!/usr/bin/env bash
2015-04-28 16:27:47 -07:00
set -e
2015-08-18 13:46:48 -07:00
echo "" > coverage.txt
for d in $(find ./* -maxdepth 10 -type d -not -path "./build" -not -path "./Godeps/*" ); do
if ls $d/*.go &> /dev/null; then
go test -coverprofile=profile.out -covermode=atomic $d
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
echo '<<<<<< EOF' >> coverage.txt
rm profile.out
fi
2015-04-28 16:27:47 -07:00
fi
done