From dc0db358abe19481e475e10c32149b53370f1a1c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 30 May 2024 05:57:31 +0200 Subject: Merging upstream version 1.72.1+dfsg1. Signed-off-by: Daniel Baumann --- vendor/tokio/tests/no_rt.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'vendor/tokio/tests/no_rt.rs') diff --git a/vendor/tokio/tests/no_rt.rs b/vendor/tokio/tests/no_rt.rs index 8437b8046..747fab6af 100644 --- a/vendor/tokio/tests/no_rt.rs +++ b/vendor/tokio/tests/no_rt.rs @@ -1,3 +1,5 @@ +#![cfg(all(feature = "full", not(tokio_wasi)))] // Wasi does not support panic recovery + use tokio::net::TcpStream; use tokio::sync::oneshot; use tokio::time::{timeout, Duration}; @@ -26,7 +28,7 @@ fn panics_when_no_reactor() { async fn timeout_value() { let (_tx, rx) = oneshot::channel::<()>(); - let dur = Duration::from_millis(20); + let dur = Duration::from_millis(10); let _ = timeout(dur, rx).await; } -- cgit v1.2.3