1
0
mirror of https://github.com/golang/go synced 2024-09-29 23:24:29 -06:00

net: correct TestIPConnSpecificMethods comment after CL 476217

As suggested by Cherry in
https://go-review.googlesource.com/c/go/+/476217/5/src/net/protoconn_test.go#171

Change-Id: I4ce3c034b44953720c543a87639fd173f86af7dc
Reviewed-on: https://go-review.googlesource.com/c/go/+/476535
Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com>
Auto-Submit: Tobias Klauser <tobias.klauser@gmail.com>
Reviewed-by: Bryan Mills <bcmills@google.com>
Reviewed-by: Cherry Mui <cherryyz@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
Tobias Klauser 2023-03-15 18:11:06 +01:00 committed by Gopher Robot
parent 07a25a9f6e
commit 2d84fbbad8

View File

@ -168,7 +168,8 @@ func TestIPConnSpecificMethods(t *testing.T) {
} }
c, err := ListenIP("ip4:icmp", la) c, err := ListenIP("ip4:icmp", la)
if testenv.SyscallIsNotSupported(err) { if testenv.SyscallIsNotSupported(err) {
// May be inside a container that disallows creating a socket. // May be inside a container that disallows creating a socket or
// not running as root.
t.Skipf("skipping: %v", err) t.Skipf("skipping: %v", err)
} else if err != nil { } else if err != nil {
t.Fatal(err) t.Fatal(err)