Files
stun/go.test.sh
Steffen Vogel 9422ebd185 Replace go-fuzz by Go's built-in fuzz tooling
As introduced by Go 1.18

Co-authored-by: Atsushi Watanabe <atsushi.w@ieee.org>
2023-01-25 11:38:40 +01:00

22 lines
438 B
Bash
Executable File

#!/usr/bin/env bash
set -e
touch coverage.txt
# quick-test without -race
go test ./...
# test with "debug" tag
go test -tags debug ./...
# test concurrency
go test -race -cpu=1,2,4 -run TestClient_DoConcurrent
for d in $(go list ./... | grep -v vendor); do
go test -race -coverprofile=profile.out -covermode=atomic "$d"
if [[ -f profile.out ]]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done