std::rt::io::file: Enable I/O tests on Win32

Enable blocked tests which are now fixed by #9165.

Closes #8810.
This commit is contained in:
klutzy 2013-09-15 23:10:56 +09:00
parent 4ecb0a372d
commit d2ce83ccb1
1 changed files with 3 additions and 5 deletions

View File

@ -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();
}