From 52f2745c18fd69174ca420a2ff5fe4216d320a48 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Tue, 21 Jul 2026 02:12:54 -0600 Subject: [PATCH] net: re-enable `tcp_stream::try_read_buf` test for WASI (#8305) --- tokio/tests/tcp_stream.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tokio/tests/tcp_stream.rs b/tokio/tests/tcp_stream.rs index 5c2a65191..4e3a2639d 100644 --- a/tokio/tests/tcp_stream.rs +++ b/tokio/tests/tcp_stream.rs @@ -307,10 +307,6 @@ fn write_until_pending(stream: &mut TcpStream) -> usize { total } -// This test is temporarily disabled on WASI due to -// https://github.com/bytecodealliance/wasmtime/issues/13040. We can re-enable -// it once that issue is fixed and the fix is included in a Wasmtime release. -#[cfg_attr(target_os = "wasi", ignore)] #[tokio::test] async fn try_read_buf() { const DATA: &[u8] = &[2u8; 4000];