summaryrefslogtreecommitdiffstats
path: root/library/std/src/os/net/tests.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--library/std/src/os/net/tests.rs29
1 files changed, 0 insertions, 29 deletions
diff --git a/library/std/src/os/net/tests.rs b/library/std/src/os/net/tests.rs
deleted file mode 100644
index 4704e3156..000000000
--- a/library/std/src/os/net/tests.rs
+++ /dev/null
@@ -1,29 +0,0 @@
-#[cfg(any(target_os = "android", target_os = "linux",))]
-#[test]
-fn quickack() {
- use crate::{
- net::{test::next_test_ip4, TcpListener, TcpStream},
- os::net::tcp::TcpStreamExt,
- };
-
- macro_rules! t {
- ($e:expr) => {
- match $e {
- Ok(t) => t,
- Err(e) => panic!("received error for `{}`: {}", stringify!($e), e),
- }
- };
- }
-
- let addr = next_test_ip4();
- let _listener = t!(TcpListener::bind(&addr));
-
- let stream = t!(TcpStream::connect(&("localhost", addr.port())));
-
- t!(stream.set_quickack(false));
- assert_eq!(false, t!(stream.quickack()));
- t!(stream.set_quickack(true));
- assert_eq!(true, t!(stream.quickack()));
- t!(stream.set_quickack(false));
- assert_eq!(false, t!(stream.quickack()));
-}