mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
win related test
This commit is contained in:
parent
936187b8d7
commit
8369e487c0
2 changed files with 9 additions and 5 deletions
1
.github/workflows/windows.yml
vendored
1
.github/workflows/windows.yml
vendored
|
@ -79,3 +79,4 @@ jobs:
|
|||
--skip test_connection_wait_queue
|
||||
--skip test_no_decompress
|
||||
--skip test_connection_reuse_h2
|
||||
--skip test_h2_tcp
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue