Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/libstd/rt/io/signal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ mod test {
Interrupt => (),
s => fail!("Expected Interrupt, got {:?}", s),
}
match s1.port.recv() {
match s2.port.recv() {
Interrupt => (),
s => fail!("Expected Interrupt, got {:?}", s),
}
Expand Down
1 change: 1 addition & 0 deletions src/libstd/rt/uv/uvio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2306,6 +2306,7 @@ fn test_read_read_read() {
}

#[test]
#[ignore(cfg(windows))] // FIXME(#10102) the server never sees the second send
fn test_udp_twice() {
do run_in_mt_newsched_task {
let server_addr = next_test_ip4();
Expand Down