Skip to content

Commit 5f4716e

Browse files
committed
ipv6: skip known-failing tests on openbsd-{arm,arm64,mips64}-jsing builders
The arm64 and mips64 builder run OpenBSD 6.8: openbsd-arm64-jsing: OpenBSD gopher-arm64.sing.id.au 6.8 GENERIC.MP#2 arm64 openbsd-mips64-jsing: OS: OpenBSD er4.sing.id.au 6.8 GENERIC.MP#0 octeon The openbsd-arm-jsing builder was offline but according to golang/go#25498 (comment) it's running at least OpenBSD 6.7. Assuming that this version is affected as well (or the builder was upgraded to 6.8 in the meantime), skip TestPacketConnReadWriteMulticastUDP on this builder as well. For golang/go#11811. Updates golang/go#42064. Change-Id: Ia9919057bfc2a69b8884228508ae919ce9d624e9 Reviewed-on: https://go-review.googlesource.com/c/net/+/283752 Trust: Tobias Klauser <[email protected]> Run-TryBot: Tobias Klauser <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Joel Sing <[email protected]>
1 parent 6772e93 commit 5f4716e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ipv6/multicast_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ 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" {
31+
switch os.Getenv("GO_BUILDER_NAME") {
32+
case "openbsd-amd64-68", "openbsd-386-68", "openbsd-arm-jsing", "openbsd-arm64-jsing", "openbsd-mips64-jsing":
3333
t.Skip(`this test is currently failing on OpenBSD 6.8 builders with "raw-read udp6: i/o timeout" ` +
3434
`and needs investigation, see golang.org/issue/42064`)
3535
}

0 commit comments

Comments
 (0)