github.com/v2pro/plz@v0.0.0-20221028024117-e5f9aec5b631/test/go-spew/cov_report.sh (about)

     1  #!/bin/sh
     2  
     3  # This script uses gocov to generate a test coverage report.
     4  # The gocov tool my be obtained with the following command:
     5  #   go get github.com/axw/gocov/gocov
     6  #
     7  # It will be installed to $GOPATH/bin, so ensure that location is in your $PATH.
     8  
     9  # Check for gocov.
    10  if ! type gocov >/dev/null 2>&1; then
    11  	echo >&2 "This script requires the gocov tool."
    12  	echo >&2 "You may obtain it with the following command:"
    13  	echo >&2 "go get github.com/axw/gocov/gocov"
    14  	exit 1
    15  fi
    16  
    17  # Only run the cgo tests if gcc is installed.
    18  if type gcc >/dev/null 2>&1; then
    19  	(cd spew && gocov test -tags testcgo | gocov report)
    20  else
    21  	(cd spew && gocov test | gocov report)
    22  fi