mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-03 05:07:38 +03:00
tests: Allow to specify the go executable to use
Important for testing with different or non-system Go versions
This commit is contained in:
parent
5c6fba8e7c
commit
a202b5d49c
2 changed files with 10 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue