Skip to content

Commit

Permalink
auto merge of rust-lang#17549 : brson/rust/morewinfail, r=alexcrichton
Browse files Browse the repository at this point in the history
32-bit builds pass the full 'make check' on the bots after this.
  • Loading branch information
bors committed Sep 26, 2014
2 parents e31680a + 6f5f2be commit aed9cc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/libstd/io/net/pipe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -751,6 +751,7 @@ mod tests {
assert!(a2.accept().is_ok());
})

#[cfg(not(windows))] // FIXME #17553
iotest!(fn clone_accept_concurrent() {
let addr = next_test_unix();
let l = UnixListener::bind(&addr);
Expand Down
1 change: 1 addition & 0 deletions src/libstd/io/net/udp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -545,6 +545,7 @@ mod test {
serv_rx.recv();
})

#[cfg(not(windows))] // FIXME #17553
iotest!(fn recv_from_timeout() {
let addr1 = next_test_ip4();
let addr2 = next_test_ip4();
Expand Down

0 comments on commit aed9cc1

Please sign in to comment.