Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions mdns_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ package ice
import (
"context"
"regexp"
"runtime"
"testing"
"time"

Expand All @@ -16,6 +17,10 @@ import (
)

func TestMulticastDNSOnlyConnection(t *testing.T) {
if runtime.GOOS == "darwin" {
t.Skip("mDNS multicast bind is unreliable on the macOS CI runner")
}

defer test.CheckRoutines(t)()

// Limit runtime in case of deadlocks
Expand Down
Loading