| #!/usr/bin/env bash | |
| # Copyright 2017 The Go Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style | |
| # license that can be found in the LICENSE file. | |
| # | |
| # This script will generate coverage.txt. | |
| set -e | |
| PKGS=$(go list ./... | grep -v /vendor/) | |
| for pkg in $PKGS; do | |
| go test -timeout=300s -race -coverprofile=profile.out -covermode=atomic $pkg | |
| if [[ -f profile.out ]]; then | |
| cat profile.out >> coverage.txt | |
| rm profile.out | |
| fi | |
| done |