win related test

This commit is contained in:
Nikolay Kim 2021-05-24 18:45:37 +06:00
parent 936187b8d7
commit 8369e487c0
2 changed files with 9 additions and 5 deletions

View file

@ -79,3 +79,4 @@ jobs:
--skip test_connection_wait_queue
--skip test_no_decompress
--skip test_connection_reuse_h2
--skip test_h2_tcp

View file

@ -834,11 +834,14 @@ async fn client_read_until_eof() {
let lst = std::net::TcpListener::bind(addr).unwrap();
for stream in lst.incoming() {
let mut stream = stream.unwrap();
let mut b = [0; 1000];
let _ = stream.read(&mut b).unwrap();
let _ = stream
.write_all(b"HTTP/1.0 200 OK\r\nconnection: close\r\n\r\nwelcome!");
if let Ok(mut stream) = stream {
let mut b = [0; 1000];
let _ = stream.read(&mut b).unwrap();
let _ = stream
.write_all(b"HTTP/1.0 200 OK\r\nconnection: close\r\n\r\nwelcome!");
} else {
break;
}
}
});
ntex::rt::time::sleep(Duration::from_millis(300)).await;