
commit a1a37d335a8e89ac89d85c00c8585d3fc02e064a Author: Josh Baker <joshbaker77@gmail.com> Date: Thu Oct 5 07:36:54 2017 -0700 use symlink instead of copy commit 96399c2c92620f633611c778e5473200bfd48d41 Author: Josh Baker <joshbaker77@gmail.com> Date: Thu Oct 5 07:19:26 2017 -0700 use dep for vendoring
23 lines
658 B
Bash
23 lines
658 B
Bash
#!/bin/sh
|
|
|
|
# This script uses gocov to generate a test coverage report.
|
|
# The gocov tool my be obtained with the following command:
|
|
# go get github.com/axw/gocov/gocov
|
|
#
|
|
# It will be installed to $GOPATH/bin, so ensure that location is in your $PATH.
|
|
|
|
# Check for gocov.
|
|
if ! type gocov >/dev/null 2>&1; then
|
|
echo >&2 "This script requires the gocov tool."
|
|
echo >&2 "You may obtain it with the following command:"
|
|
echo >&2 "go get github.com/axw/gocov/gocov"
|
|
exit 1
|
|
fi
|
|
|
|
# Only run the cgo tests if gcc is installed.
|
|
if type gcc >/dev/null 2>&1; then
|
|
(cd spew && gocov test -tags testcgo | gocov report)
|
|
else
|
|
(cd spew && gocov test | gocov report)
|
|
fi
|