Delete flaky test net::tcp::tests::fast_rebind

This commit is contained in:
David Tolnay 2019-12-14 18:43:54 -08:00
parent 6f829840f7
commit 2514cd555b
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -1312,21 +1312,6 @@ fn double_bind() {
})
}
#[test]
fn fast_rebind() {
each_ip(&mut |addr| {
let acceptor = t!(TcpListener::bind(&addr));
let _t = thread::spawn(move || {
t!(TcpStream::connect(&addr));
});
t!(acceptor.accept());
drop(acceptor);
t!(TcpListener::bind(&addr));
});
}
#[test]
fn tcp_clone_smoke() {
each_ip(&mut |addr| {