portlist: add a lint ignore for unused function.

The function is indeed unused on linux, but we want it around
so that unit tests exercise the netstat logic even on linux,
even if it's only used on !linux.

Signed-off-by: David Anderson <dave@natulte.net>
This commit is contained in:
David Anderson 2020-02-10 23:50:06 -08:00
parent 520e96afd1
commit 9ac1dda0d9

View File

@ -132,6 +132,8 @@ func parsePortsNetstat(output string) List {
return l
}
//lint:ignore U1000 function is only used on !linux, but we want the
// unit test to run on linux, so we don't build-tag it away.
func listPortsNetstat(args string) (List, error) {
exe, err := exec.LookPath("netstat")
if err != nil {