libstd: "target_os = win32", not "target_os = windows". rs=bustage

This commit is contained in:
Patrick Walton 2013-01-12 10:11:44 -08:00
parent f38e9724e6
commit 802d475190

View file

@ -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();
}
@ -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();
}