stun-1/go.test.sh
2020-11-01 19:06:41 +03:00

16 lines
252 B
Bash
Executable File

#!/usr/bin/env bash
set -e
# test fuzz inputs
go test -tags gofuzz -run TestFuzz -v .
# test with "debug" tag
go test -tags debug ./...
# test concurrency
go test -race -cpu=1,2,4 -run TestClient_DoConcurrent
# test with -race
go test -race ./...