Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.
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 src/mdns/mdns_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ use regex::Regex;
use tokio::sync::{mpsc, Mutex};

#[tokio::test]
// This test is disabled on Windows for now because it gets stuck and never finishes.
// This does not seem to have happened due to a code change. It started happening with
// `ce55c3a066ab461c3e74f0d5ac6f1209205e79bc` but was verified as happening on
// `92cc698a3dc6da459f3bf3789fd046c2dffdf107` too.
#[cfg(not(windows))]
async fn test_multicast_dns_only_connection() -> Result<()> {
let cfg0 = AgentConfig {
network_types: vec![NetworkType::Udp4],
Expand Down