2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-05 10:30:49 +00:00
restic/coverage_all.sh

11 lines
228 B
Bash
Raw Normal View History

#!/bin/bash
TARGETFILE="$1"
go list ./... | while read pkg; do
go test -covermode=count -coverprofile=$(base64 <<< $pkg).cov $pkg
done
echo "mode: count" > $TARGETFILE
2015-05-09 20:40:10 +00:00
tail -q -n +2 *.cov */*.cov */*/*.cov >> $TARGETFILE