xframe/vendor/github.com/go-faster/errors/go.test.sh

13 lines
225 B
Bash
Raw Normal View History

2024-10-12 12:55:20 +08:00
#!/usr/bin/env bash
set -e
# test with -race
echo "with race:"
go test --timeout 5m -race ./...
# test with noerrtrace build tag
tag=noerrtrace
echo "with ${tag} build tag:"
go test -tags "${tag}" --timeout 5m -race ./...