diff options
| author | Vadim Chugunov <vadimcn@gmail.com> | 2013-08-28 01:44:25 -0700 |
|---|---|---|
| committer | Vadim Chugunov <vadimcn@gmail.com> | 2013-08-28 01:44:25 -0700 |
| commit | 653825889e596e034cae8ac9afbfdd043fbe6e13 (patch) | |
| tree | d9fc1ac5c1d105e4c64fe2b73973dd7c25a500e3 /src/libstd/rt/io | |
| parent | 6828428cad873e9a9c890ee184140e8370ca7b60 (diff) | |
| download | rust-653825889e596e034cae8ac9afbfdd043fbe6e13.tar.gz rust-653825889e596e034cae8ac9afbfdd043fbe6e13.zip | |
Turned off libstd unit tests that currently fail on Windows.
Diffstat (limited to 'src/libstd/rt/io')
| -rw-r--r-- | src/libstd/rt/io/file.rs | 5 | ||||
| -rw-r--r-- | src/libstd/rt/io/net/tcp.rs | 5 | ||||
| -rw-r--r-- | src/libstd/rt/io/support.rs | 1 |
3 files changed, 11 insertions, 0 deletions
diff --git a/src/libstd/rt/io/file.rs b/src/libstd/rt/io/file.rs index 534e308a1a6..1104f800ee2 100644 --- a/src/libstd/rt/io/file.rs +++ b/src/libstd/rt/io/file.rs @@ -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(); } diff --git a/src/libstd/rt/io/net/tcp.rs b/src/libstd/rt/io/net/tcp.rs index dc7135f4a61..8415590193e 100644 --- a/src/libstd/rt/io/net/tcp.rs +++ b/src/libstd/rt/io/net/tcp.rs @@ -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(); diff --git a/src/libstd/rt/io/support.rs b/src/libstd/rt/io/support.rs index 7bace5d6df2..afbff77f988 100644 --- a/src/libstd/rt/io/support.rs +++ b/src/libstd/rt/io/support.rs @@ -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); |
