maddy/tests/run.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

17 lines
330 B
Bash
Executable file

#!/bin/sh
set -e
if [ -z "$GO" ]; then
export GO=go
fi
./build_cover.sh
clean() {
rm -f /tmp/maddy-coverage-report*
}
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