From 24ec0f223d4c942139d9238c9b683cc73a4f0e92 Mon Sep 17 00:00:00 2001 From: Chris Denton Date: Mon, 7 Mar 2022 22:35:17 +0000 Subject: [PATCH] Enable `close_read_wakes_up` on Windows --- library/std/src/net/tcp/tests.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/library/std/src/net/tcp/tests.rs b/library/std/src/net/tcp/tests.rs index c2061c1351262..959fe6943f6ee 100644 --- a/library/std/src/net/tcp/tests.rs +++ b/library/std/src/net/tcp/tests.rs @@ -508,7 +508,6 @@ fn close_readwrite_smoke() { } #[test] -#[cfg(unix)] // test doesn't work on Windows, see #31657 fn close_read_wakes_up() { each_ip(&mut |addr| { let a = t!(TcpListener::bind(&addr));