about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRaoul Strackx <raoul.strackx@fortanix.com>2022-03-09 12:28:02 +0100
committerRaoul Strackx <raoul.strackx@fortanix.com>2022-03-09 12:28:16 +0100
commit491350ce75b25bdd36cdf995cd8ec370cbab3889 (patch)
tree1c6a46fbfe51b90b9a2359fd7c90da7da676d936
parent163c207fc28cadff4de1808848a93e3e5f2d1941 (diff)
downloadrust-491350ce75b25bdd36cdf995cd8ec370cbab3889.tar.gz
rust-491350ce75b25bdd36cdf995cd8ec370cbab3889.zip
Ignore `close_read_wakes_up` test on SGX platform
-rw-r--r--library/std/src/net/tcp/tests.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/library/std/src/net/tcp/tests.rs b/library/std/src/net/tcp/tests.rs
index 959fe6943f6..4d5cf658def 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));