From e4bd3f1597ec0016d9432965c93d7b8f56367200 Mon Sep 17 00:00:00 2001 From: Dirkjan Ochtman Date: Wed, 6 Mar 2019 11:48:04 +0100 Subject: [PATCH] Disable dual-stack IP test for now --- quinn/src/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quinn/src/tests.rs b/quinn/src/tests.rs index a68c33a35..8a8929717 100644 --- a/quinn/src/tests.rs +++ b/quinn/src/tests.rs @@ -39,7 +39,7 @@ fn echo_v4() { } #[test] -#[cfg(any(target_os = "linux", target_os = "macos"))] // Dual-stack sockets aren't the default anywhere else. +#[cfg(any(target_os = "linux"))] // Dual-stack sockets aren't the default anywhere else. fn echo_dualstack() { run_echo( SocketAddr::new(IpAddr::V6(Ipv6Addr::UNSPECIFIED), 0),