Skip to content

Commit e741449

Browse files
committed
std: unignore some file io tests that work on windows, now
1 parent bf399d5 commit e741449

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

src/libstd/rt/io/file.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,6 @@ fn file_test_io_seek_shakedown() {
622622
}
623623

624624
#[test]
625-
#[ignore(cfg(windows))] // FIXME #8810
626625
fn file_test_stat_is_correct_on_is_file() {
627626
do run_in_mt_newsched_task {
628627
let filename = &Path("./tmp/file_stat_correct_on_is_file.txt");
@@ -641,7 +640,6 @@ fn file_test_stat_is_correct_on_is_file() {
641640
}
642641

643642
#[test]
644-
#[ignore(cfg(windows))] // FIXME #8810
645643
fn file_test_stat_is_correct_on_is_dir() {
646644
do run_in_mt_newsched_task {
647645
let filename = &Path("./tmp/file_stat_correct_on_is_dir");
@@ -656,7 +654,6 @@ fn file_test_stat_is_correct_on_is_dir() {
656654
}
657655

658656
#[test]
659-
#[ignore(cfg(windows))] // FIXME #8810
660657
fn file_test_fileinfo_false_when_checking_is_file_on_a_directory() {
661658
do run_in_mt_newsched_task {
662659
let dir = &Path("./tmp/fileinfo_false_on_dir");
@@ -667,7 +664,6 @@ fn file_test_fileinfo_false_when_checking_is_file_on_a_directory() {
667664
}
668665

669666
#[test]
670-
#[ignore(cfg(windows))] // FIXME #8810
671667
fn file_test_fileinfo_check_exists_before_and_after_file_creation() {
672668
do run_in_mt_newsched_task {
673669
let file = &Path("./tmp/fileinfo_check_exists_b_and_a.txt");

src/libstd/rt/uv/file.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,6 @@ mod test {
333333
S_IWUSR, S_IRUSR};
334334

335335
#[test]
336-
#[ignore(cfg(windows))] // FIXME #8814
337336
fn file_test_full_simple() {
338337
do run_in_bare_thread {
339338
let mut loop_ = Loop::new();
@@ -409,7 +408,6 @@ mod test {
409408
}
410409
411410
#[test]
412-
#[ignore(cfg(windows))] // FIXME #8814
413411
fn file_test_full_simple_sync() {
414412
do run_in_bare_thread {
415413
// setup

0 commit comments

Comments
 (0)