Skip to content
This repository has been archived by the owner on May 26, 2022. It is now read-only.

Commit

Permalink
disable failing TestV6V4 on OSX (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
marten-seemann authored May 18, 2022
1 parent 7b09f5f commit fe436d7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions 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 fe436d7

Please sign in to comment.