From 491350ce75b25bdd36cdf995cd8ec370cbab3889 Mon Sep 17 00:00:00 2001 From: Raoul Strackx Date: Wed, 9 Mar 2022 12:28:02 +0100 Subject: [PATCH] Ignore `close_read_wakes_up` test on SGX platform --- library/std/src/net/tcp/tests.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/std/src/net/tcp/tests.rs b/library/std/src/net/tcp/tests.rs index 959fe6943f6ee..4d5cf658def0d 100644 --- a/library/std/src/net/tcp/tests.rs +++ b/library/std/src/net/tcp/tests.rs @@ -508,6 +508,7 @@ fn close_readwrite_smoke() { } #[test] +#[cfg_attr(target_env = "sgx", ignore)] fn close_read_wakes_up() { each_ip(&mut |addr| { let a = t!(TcpListener::bind(&addr));