gb vendor fetch github.com/jaegertracing/jaeger

This commit is contained in:
Mark Haines 2017-09-28 13:48:18 +01:00
parent c4947c2ffb
commit 4a0b24c7f4
3087 changed files with 515963 additions and 0 deletions

View file

@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -e
echo "" > cover.out
for d in $(go list $@); do
go test -race -coverprofile=profile.out $d
if [ -f profile.out ]; then
cat profile.out >> cover.out
rm profile.out
fi
done