summaryrefslogtreecommitdiffstats
path: root/library/std/src/net/tcp
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/net/tcp')
-rw-r--r--library/std/src/net/tcp/tests.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/library/std/src/net/tcp/tests.rs b/library/std/src/net/tcp/tests.rs
index 7a3c66e45..db367cfa0 100644
--- a/library/std/src/net/tcp/tests.rs
+++ b/library/std/src/net/tcp/tests.rs
@@ -47,6 +47,17 @@ fn connect_error() {
}
#[test]
+#[cfg_attr(target_env = "sgx", ignore)] // FIXME: https://github.com/fortanix/rust-sgx/issues/31
+fn connect_timeout_error() {
+ let socket_addr = next_test_ip4();
+ let result = TcpStream::connect_timeout(&socket_addr, Duration::MAX);
+ assert!(!matches!(result, Err(e) if e.kind() == ErrorKind::TimedOut));
+
+ let _listener = TcpListener::bind(&socket_addr).unwrap();
+ assert!(TcpStream::connect_timeout(&socket_addr, Duration::MAX).is_ok());
+}
+
+#[test]
fn listen_localhost() {
let socket_addr = next_test_ip4();
let listener = t!(TcpListener::bind(&socket_addr));