From d2ce83ccb1106cbb98820a54fbab333b0ed65e98 Mon Sep 17 00:00:00 2001 From: klutzy Date: Sun, 15 Sep 2013 23:10:56 +0900 Subject: [PATCH] std::rt::io::file: Enable I/O tests on Win32 Enable blocked tests which are now fixed by #9165. Closes #8810. --- src/libstd/rt/io/file.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/libstd/rt/io/file.rs b/src/libstd/rt/io/file.rs index 3bc0e74c7822..c24f4eb257e1 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(); }