libstd: Ignore failing test on Windows
This commit is contained in:
parent
cfa62cd5ee
commit
063a7ad481
1 changed files with 3 additions and 0 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue