mirror of
https://github.com/restic/restic.git
synced 2025-04-22 15:21:27 +00:00
11 lines
228 B
Bash
Executable File
11 lines
228 B
Bash
Executable File
#!/bin/bash
|
|
|
|
TARGETFILE="$1"
|
|
|
|
go list ./... | while read pkg; do
|
|
go test -covermode=count -coverprofile=$(base64 <<< $pkg).cov $pkg
|
|
done
|
|
|
|
echo "mode: count" > $TARGETFILE
|
|
tail -q -n +2 *.cov */*.cov */*/*.cov >> $TARGETFILE
|