6f5a43d6c8
These changes are a joint effort between myself and @dajohi. - Separate IP address range/network code into its own file - Group all of the RFC range declarations together - Introduces a new unexported function to simplify the range declarations - Add comments for all exported functions - Use consistent variable casing in refactored code - Add initial doc.go package overview - Bump serialize interval to 10 minutes - Correct GroupKey to perform as intended - Make AddLocalAddress return error instead of just a debug message - Add tests for AddLocalAddress - Add tests for GroupKey - Add tests for GetBestLocalAddress - Use time.Time to improve readability - Make address manager code golint clean - Misc cleanup - Add test coverage reporting
17 lines
512 B
Bash
17 lines
512 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.
|
|
type gocov >/dev/null 2>&1
|
|
if [ $? -ne 0 ]; 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
|
|
gocov test | gocov report
|