From bdf7eed8a5660a7e26752a3791b3b3bf1750cdc4 Mon Sep 17 00:00:00 2001 From: Hugo Tunius Date: Wed, 25 May 2022 10:49:50 +0200 Subject: [PATCH] Disable test that started failing on windows This test started failing, seemingly, due to something external changing. Making a branch from the last green build and an empty commit causes the same failure. There might be something here, but for now I've just disabled the test. --- src/mdns/mdns_test.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/mdns/mdns_test.rs b/src/mdns/mdns_test.rs index 21c50e8..8752cc4 100644 --- a/src/mdns/mdns_test.rs +++ b/src/mdns/mdns_test.rs @@ -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],