mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-09 22:37:34 +00:00
Turned off libstd unit tests that currently fail on Windows.
This commit is contained in:
parent
6828428cad
commit
653825889e
@ -165,6 +165,7 @@ fn file_test_smoke_test_impl() {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8810
|
||||
fn file_test_io_smoke_test() {
|
||||
file_test_smoke_test_impl();
|
||||
}
|
||||
@ -232,6 +233,7 @@ fn file_test_io_non_positional_read_impl() {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8810
|
||||
fn file_test_io_non_positional_read() {
|
||||
file_test_io_non_positional_read_impl();
|
||||
}
|
||||
@ -264,6 +266,7 @@ fn file_test_io_seeking_impl() {
|
||||
}
|
||||
}
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8810
|
||||
fn file_test_io_seek_and_tell_smoke_test() {
|
||||
file_test_io_seeking_impl();
|
||||
}
|
||||
@ -295,6 +298,7 @@ fn file_test_io_seek_and_write_impl() {
|
||||
}
|
||||
}
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8810
|
||||
fn file_test_io_seek_and_write() {
|
||||
file_test_io_seek_and_write_impl();
|
||||
}
|
||||
@ -334,6 +338,7 @@ fn file_test_io_seek_shakedown_impl() {
|
||||
}
|
||||
}
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8810
|
||||
fn file_test_io_seek_shakedown() {
|
||||
file_test_io_seek_shakedown_impl();
|
||||
}
|
||||
|
@ -162,6 +162,7 @@ mod test {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8811
|
||||
fn connect_error() {
|
||||
do run_in_newsched_task {
|
||||
let mut called = false;
|
||||
@ -258,6 +259,7 @@ mod test {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8811
|
||||
fn read_eof_twice_ip4() {
|
||||
do run_in_newsched_task {
|
||||
let addr = next_test_ip4();
|
||||
@ -280,6 +282,7 @@ mod test {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8811
|
||||
fn read_eof_twice_ip6() {
|
||||
do run_in_newsched_task {
|
||||
let addr = next_test_ip6();
|
||||
@ -302,6 +305,7 @@ mod test {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8811
|
||||
fn write_close_ip4() {
|
||||
do run_in_newsched_task {
|
||||
let addr = next_test_ip4();
|
||||
@ -331,6 +335,7 @@ mod test {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8811
|
||||
fn write_close_ip6() {
|
||||
do run_in_newsched_task {
|
||||
let addr = next_test_ip6();
|
||||
|
@ -33,6 +33,7 @@ mod test {
|
||||
use super::PathLike;
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8812
|
||||
fn path_like_smoke_test() {
|
||||
let expected = "/home";
|
||||
let path = Path(expected);
|
||||
|
@ -405,11 +405,13 @@ mod test {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8814
|
||||
fn file_test_full_simple() {
|
||||
file_test_full_simple_impl();
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8814
|
||||
fn file_test_full_simple_sync() {
|
||||
file_test_full_simple_impl_sync();
|
||||
}
|
||||
|
@ -600,6 +600,7 @@ mod test {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8815
|
||||
fn listen_ip4() {
|
||||
do run_in_bare_thread() {
|
||||
static MAX: int = 10;
|
||||
@ -674,6 +675,7 @@ mod test {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8815
|
||||
fn listen_ip6() {
|
||||
do run_in_bare_thread() {
|
||||
static MAX: int = 10;
|
||||
@ -750,6 +752,7 @@ mod test {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8815
|
||||
fn udp_recv_ip4() {
|
||||
do run_in_bare_thread() {
|
||||
static MAX: int = 10;
|
||||
@ -810,6 +813,7 @@ mod test {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8815
|
||||
fn udp_recv_ip6() {
|
||||
do run_in_bare_thread() {
|
||||
static MAX: int = 10;
|
||||
|
@ -1860,6 +1860,7 @@ fn test_read_read_read() {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8816
|
||||
fn test_udp_twice() {
|
||||
do run_in_newsched_task {
|
||||
let server_addr = next_test_ip4();
|
||||
@ -1994,6 +1995,7 @@ fn file_test_uvio_full_simple_impl() {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8816
|
||||
fn file_test_uvio_full_simple() {
|
||||
do run_in_newsched_task {
|
||||
file_test_uvio_full_simple_impl();
|
||||
|
@ -286,6 +286,7 @@ fn handle_sanity_check() {
|
||||
}
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8817
|
||||
#[fixed_stack_segment]
|
||||
#[inline(never)]
|
||||
fn request_sanity_check() {
|
||||
|
@ -90,6 +90,7 @@ mod test {
|
||||
use libc;
|
||||
|
||||
#[test]
|
||||
#[ignore(cfg(windows))] // FIXME #8818
|
||||
fn test_loading_cosine() {
|
||||
// The math library does not need to be loaded since it is already
|
||||
// statically linked in
|
||||
|
Loading…
Reference in New Issue
Block a user