Skip to content

Commit aea8142

Browse files
committed
[release-branch.go1.15] ipv6: skip known-failing tests on OpenBSD 6.8 builders
These tests are known to be failing on OpenBSD 6.8 and need investigation. The OpenBSD 6.8 builders are default TryBots now, so skip them to prevent people working on other packages from constantly getting a failure. Issue 42064 remains open to do the work of determining if the ipv6 package needs to be fixed, or if OpenBSD 6.8 has a problem and the test can be permanently skipped as unsupported. For golang/go#11811. Updates golang/go#42064. Updates golang/go#35712. Change-Id: I59883384e4dbce679cb1a4e8e2c3f0fa7983010b Reviewed-on: https://go-review.googlesource.com/c/net/+/280052 Run-TryBot: Dmitri Shuralyov <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Alexander Rakoczy <[email protected]> Trust: Dmitri Shuralyov <[email protected]> (cherry picked from commit 6772e93) Reviewed-on: https://go-review.googlesource.com/c/net/+/314750 Trust: Katie Hockman <[email protected]> Reviewed-by: Katie Hockman <[email protected]>
1 parent 261fb51 commit aea8142

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

ipv6/multicast_test.go

+10
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@ var packetConnReadWriteMulticastUDPTests = []struct {
2828
}
2929

3030
func TestPacketConnReadWriteMulticastUDP(t *testing.T) {
31+
if os.Getenv("GO_BUILDER_NAME") == "openbsd-amd64-68" ||
32+
os.Getenv("GO_BUILDER_NAME") == "openbsd-386-68" {
33+
t.Skip(`this test is currently failing on OpenBSD 6.8 builders with "raw-read udp6: i/o timeout" ` +
34+
`and needs investigation, see golang.org/issue/42064`)
35+
}
3136
switch runtime.GOOS {
3237
case "fuchsia", "hurd", "js", "nacl", "plan9", "windows":
3338
t.Skipf("not supported on %s", runtime.GOOS)
@@ -128,6 +133,11 @@ var packetConnReadWriteMulticastICMPTests = []struct {
128133
}
129134

130135
func TestPacketConnReadWriteMulticastICMP(t *testing.T) {
136+
if os.Getenv("GO_BUILDER_NAME") == "openbsd-amd64-68" ||
137+
os.Getenv("GO_BUILDER_NAME") == "openbsd-386-68" {
138+
t.Skip(`this test is currently failing on OpenBSD 6.8 builders with "raw-read ip6: i/o timeout" ` +
139+
`and needs investigation, see golang.org/issue/42064`)
140+
}
131141
switch runtime.GOOS {
132142
case "fuchsia", "hurd", "js", "nacl", "plan9", "windows":
133143
t.Skipf("not supported on %s", runtime.GOOS)

0 commit comments

Comments
 (0)