tests: Allow to specify the go executable to use

Important for testing with different or non-system Go versions
This commit is contained in:
fox.cpp 2021-07-10 21:46:42 +03:00
parent 5c6fba8e7c
commit a202b5d49c
No known key found for this signature in database
GPG key ID: 5B991F6215D2FCC0
2 changed files with 10 additions and 3 deletions

View file

@ -1,2 +1,5 @@
#!/bin/sh
exec go test -tags 'cover_main debugflags' -coverpkg 'github.com/foxcpp/maddy,github.com/foxcpp/maddy/pkg/...,github.com/foxcpp/maddy/internal/...' -cover -covermode atomic -c cover_test.go -o maddy.cover
if [ -z "$GO" ]; then
GO=go
fi
exec $GO test -tags 'cover_main debugflags' -coverpkg 'github.com/foxcpp/maddy,github.com/foxcpp/maddy/pkg/...,github.com/foxcpp/maddy/internal/...' -cover -covermode atomic -c cover_test.go -o maddy.cover

View file

@ -2,6 +2,10 @@
set -e
if [ -z "$GO" ]; then
export GO=go
fi
./build_cover.sh
clean() {
@ -9,5 +13,5 @@ clean() {
}
trap clean EXIT
go test -tags integration -integration.executable ./maddy.cover -integration.coverprofile /tmp/maddy-coverage-report "$@"
go run gocovcat.go /tmp/maddy-coverage-report* > coverage.out
$GO test -tags integration -integration.executable ./maddy.cover -integration.coverprofile /tmp/maddy-coverage-report "$@"
$GO run gocovcat.go /tmp/maddy-coverage-report* > coverage.out