summaryrefslogtreecommitdiff
path: root/vendor/github.com/pion/stun/go.test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/pion/stun/go.test.sh')
-rw-r--r--vendor/github.com/pion/stun/go.test.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/vendor/github.com/pion/stun/go.test.sh b/vendor/github.com/pion/stun/go.test.sh
deleted file mode 100644
index 25234e4..0000000
--- a/vendor/github.com/pion/stun/go.test.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-touch coverage.txt
-
-# test fuzz inputs
-go test -tags gofuzz -run TestFuzz -v .
-
-# 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