Make drop test more reliable

This commit is contained in:
Antonio Scandurra 2021-06-14 17:27:00 +02:00
parent 8e3f40bfdd
commit 0ddbe0c757

View file

@ -184,13 +184,16 @@ mod tests {
drop(client);
// Try sending an empty payload over and over, until the client is dropped and hangs up.
let error = loop {
match server_conn.write(&[0]).await {
Ok(_) => continue,
Err(err) => break err,
loop {
match server_conn.write(&[]).await {
Ok(_) => {}
Err(err) => {
if err.kind() == io::ErrorKind::BrokenPipe {
break;
}
}
}
};
assert_eq!(error.kind(), io::ErrorKind::BrokenPipe);
}
}
async fn send_recv<S, R, O>(mut sender: S, receiver: R) -> O