Skip to content

Commit

Permalink
libstd: "target_os = win32", not "target_os = windows". rs=bustage
Browse files Browse the repository at this point in the history
  • Loading branch information
pcwalton committed Jan 12, 2013
1 parent f38e972 commit 802d475
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/net_tcp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ pub mod test {
}
// Strange failure on Windows. --pcwalton
#[test]
#[ignore(cfg(target_os = "windows"))]
#[ignore(cfg(target_os = "win32"))]
fn test_gl_tcp_ipv4_server_client_reader_writer() {
impl_gl_tcp_ipv4_server_client_reader_writer();
}
Expand Down Expand Up @@ -1360,7 +1360,7 @@ pub mod test {
}
#[test]
#[ignore(cfg(target_os = "linux"))]
#[ignore(cfg(target_os = "windows"))]
#[ignore(cfg(target_os = "win32"))]
fn test_gl_tcp_ipv4_server_client_reader_writer() {
impl_gl_tcp_ipv4_server_client_reader_writer();
}
Expand Down

0 comments on commit 802d475

Please sign in to comment.