mirror of
https://github.com/octoleo/restic.git
synced 2024-10-31 19:02:32 +00:00
Use run_tests.go
for testing coverage
This commit is contained in:
parent
d8d09b6d69
commit
e071ca57d5
10
Makefile
10
Makefile
@ -61,14 +61,8 @@ test-integration: .gopath
|
||||
-test.integration \
|
||||
-test.datafile=$(PWD)/testsuite/fake-data.tar.gz
|
||||
|
||||
all.cov: .gopath $(SOURCE) test-integration
|
||||
cd $(BASEPATH) && \
|
||||
go list ./... | while read pkg; do \
|
||||
go test -covermode=count -coverprofile=$$(echo $$pkg | base64).cov $$pkg; \
|
||||
done
|
||||
|
||||
echo "mode: count" > all.cov
|
||||
tail -q -n +2 *.cov >> all.cov
|
||||
all.cov: .gopath $(SOURCE)
|
||||
cd $(BASEPATH) && go run run_tests.go all.cov
|
||||
|
||||
env:
|
||||
@echo export GOPATH=\"$(GOPATH)\"
|
||||
|
@ -1,10 +0,0 @@
|
||||
#!/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
|
Loading…
Reference in New Issue
Block a user