maddy/tests/build_cover.sh
fox.cpp a202b5d49c
tests: Allow to specify the go executable to use
Important for testing with different or non-system Go versions
2021-07-10 22:40:50 +03:00

5 lines
248 B
Bash
Executable file

#!/bin/sh
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