gb vendor fetch github.com/jaegertracing/jaeger
This commit is contained in:
parent
c4947c2ffb
commit
4a0b24c7f4
3087 changed files with 515963 additions and 0 deletions
12
vendor/src/go.uber.org/zap/scripts/cover.sh
vendored
Normal file
12
vendor/src/go.uber.org/zap/scripts/cover.sh
vendored
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue