Skip to content

Commit 2514cd5

Browse files
committed
Delete flaky test net::tcp::tests::fast_rebind
1 parent 6f82984 commit 2514cd5

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/libstd/net/tcp.rs

-15
Original file line numberDiff line numberDiff line change
@@ -1312,21 +1312,6 @@ mod tests {
13121312
})
13131313
}
13141314

1315-
#[test]
1316-
fn fast_rebind() {
1317-
each_ip(&mut |addr| {
1318-
let acceptor = t!(TcpListener::bind(&addr));
1319-
1320-
let _t = thread::spawn(move || {
1321-
t!(TcpStream::connect(&addr));
1322-
});
1323-
1324-
t!(acceptor.accept());
1325-
drop(acceptor);
1326-
t!(TcpListener::bind(&addr));
1327-
});
1328-
}
1329-
13301315
#[test]
13311316
fn tcp_clone_smoke() {
13321317
each_ip(&mut |addr| {

0 commit comments

Comments
 (0)