Skip to content

Commit aed9cc1

Browse files
committed
auto merge of #17549 : brson/rust/morewinfail, r=alexcrichton
32-bit builds pass the full 'make check' on the bots after this.
2 parents e31680a + 6f5f2be commit aed9cc1

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/libstd/io/net/pipe.rs

+1
Original file line numberDiff line numberDiff line change
@@ -751,6 +751,7 @@ mod tests {
751751
assert!(a2.accept().is_ok());
752752
})
753753

754+
#[cfg(not(windows))] // FIXME #17553
754755
iotest!(fn clone_accept_concurrent() {
755756
let addr = next_test_unix();
756757
let l = UnixListener::bind(&addr);

src/libstd/io/net/udp.rs

+1
Original file line numberDiff line numberDiff line change
@@ -545,6 +545,7 @@ mod test {
545545
serv_rx.recv();
546546
})
547547

548+
#[cfg(not(windows))] // FIXME #17553
548549
iotest!(fn recv_from_timeout() {
549550
let addr1 = next_test_ip4();
550551
let addr2 = next_test_ip4();

0 commit comments

Comments
 (0)