about summary refs log tree commit diff
path: root/library/std/src/net/tcp
diff options
context:
space:
mode:
authorChris Denton <christophersdenton@gmail.com>2022-03-07 22:35:17 +0000
committerChris Denton <christophersdenton@gmail.com>2022-03-07 22:35:17 +0000
commit24ec0f223d4c942139d9238c9b683cc73a4f0e92 (patch)
tree8cff800c91f309dd29b5d1a83f5f9f9b66ab0cf0 /library/std/src/net/tcp
parent03918badd33d255de806b4a9a8aa75b031ed0738 (diff)
downloadrust-24ec0f223d4c942139d9238c9b683cc73a4f0e92.tar.gz
rust-24ec0f223d4c942139d9238c9b683cc73a4f0e92.zip
Enable `close_read_wakes_up` on Windows
Diffstat (limited to 'library/std/src/net/tcp')
-rw-r--r--library/std/src/net/tcp/tests.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/std/src/net/tcp/tests.rs b/library/std/src/net/tcp/tests.rs
index c2061c13512..959fe6943f6 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));