Skip to content

Commit

Permalink
disable failing TestV6V4 on OSX (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
marten-seemann committed May 18, 2022
1 parent ef6c8c9 commit c42772b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions p2p/net/reuseport/transport_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,9 @@ func testPrefer(t *testing.T, listen, prefer, avoid ma.Multiaddr) {
}

func TestV6V4(t *testing.T) {
if runtime.GOOS == "darwin" {
t.Skip("This test is failing on OSX: https://github.com/libp2p/go-reuseport-transport/issues/40")
}
testUseFirst(t, loopbackV4, loopbackV4, loopbackV6)
testUseFirst(t, loopbackV6, loopbackV6, loopbackV4)
}
Expand Down

0 comments on commit c42772b

Please sign in to comment.