libstd: Ignore failing test on Windows

This commit is contained in:
Patrick Walton 2013-01-11 15:46:07 -08:00
parent cfa62cd5ee
commit 063a7ad481

View File

@ -1317,7 +1317,9 @@ pub mod test {
fn test_gl_tcp_server_access_denied() unsafe {
impl_gl_tcp_ipv4_server_access_denied();
}
// Strange failure on Windows. --pcwalton
#[test]
#[ignore(cfg(target_os = "windows"))]
fn test_gl_tcp_ipv4_server_client_reader_writer() {
impl_gl_tcp_ipv4_server_client_reader_writer();
}
@ -1358,6 +1360,7 @@ pub mod test {
}
#[test]
#[ignore(cfg(target_os = "linux"))]
#[ignore(cfg(target_os = "windows"))]
fn test_gl_tcp_ipv4_server_client_reader_writer() {
impl_gl_tcp_ipv4_server_client_reader_writer();
}