We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e31680a + 6f5f2be commit aed9cc1Copy full SHA for aed9cc1
src/libstd/io/net/pipe.rs
@@ -751,6 +751,7 @@ mod tests {
751
assert!(a2.accept().is_ok());
752
})
753
754
+ #[cfg(not(windows))] // FIXME #17553
755
iotest!(fn clone_accept_concurrent() {
756
let addr = next_test_unix();
757
let l = UnixListener::bind(&addr);
src/libstd/io/net/udp.rs
@@ -545,6 +545,7 @@ mod test {
545
serv_rx.recv();
546
547
548
549
iotest!(fn recv_from_timeout() {
550
let addr1 = next_test_ip4();
551
let addr2 = next_test_ip4();
0 commit comments