diff options
| author | klutzy <klutzytheklutzy@gmail.com> | 2013-09-15 23:10:56 +0900 |
|---|---|---|
| committer | klutzy <klutzytheklutzy@gmail.com> | 2013-09-15 23:20:33 +0900 |
| commit | d2ce83ccb1106cbb98820a54fbab333b0ed65e98 (patch) | |
| tree | cadda4a83beafc9fbea65eb8c743e26938ba74a5 /src/libstd | |
| parent | 4ecb0a372d4b246f694bf780d50809dc0fb32018 (diff) | |
| download | rust-d2ce83ccb1106cbb98820a54fbab333b0ed65e98.tar.gz rust-d2ce83ccb1106cbb98820a54fbab333b0ed65e98.zip | |
std::rt::io::file: Enable I/O tests on Win32
Enable blocked tests which are now fixed by #9165. Closes #8810.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/rt/io/file.rs | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/libstd/rt/io/file.rs b/src/libstd/rt/io/file.rs index 3bc0e74c782..c24f4eb257e 100644 --- a/src/libstd/rt/io/file.rs +++ b/src/libstd/rt/io/file.rs @@ -168,7 +168,6 @@ fn file_test_smoke_test_impl() { } #[test] -#[ignore(cfg(windows))] // FIXME #8810 fn file_test_io_smoke_test() { file_test_smoke_test_impl(); } @@ -236,7 +235,6 @@ 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(); } @@ -268,8 +266,8 @@ fn file_test_io_seeking_impl() { assert!(tell_pos_post_read == message.len() as u64); } } + #[test] -#[ignore(cfg(windows))] // FIXME #8810 fn file_test_io_seek_and_tell_smoke_test() { file_test_io_seeking_impl(); } @@ -300,8 +298,8 @@ fn file_test_io_seek_and_write_impl() { assert!(read_str == final_msg.to_owned()); } } + #[test] -#[ignore(cfg(windows))] // FIXME #8810 fn file_test_io_seek_and_write() { file_test_io_seek_and_write_impl(); } @@ -340,8 +338,8 @@ fn file_test_io_seek_shakedown_impl() { unlink(filename); } } + #[test] -#[ignore(cfg(windows))] // FIXME #8810 fn file_test_io_seek_shakedown() { file_test_io_seek_shakedown_impl(); } |
