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