From 6aebf3cc16aa0730b4e636c638c39ad1607b8f39 Mon Sep 17 00:00:00 2001 From: klutzy Date: Mon, 16 Sep 2013 10:55:11 +0900 Subject: [PATCH] extra::fileinput: Enable tests on Win32 They were blocked by #8810, but it works now. --- src/libextra/fileinput.rs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/libextra/fileinput.rs b/src/libextra/fileinput.rs index edf130fd6c6..23d80362e3c 100644 --- a/src/libextra/fileinput.rs +++ b/src/libextra/fileinput.rs @@ -433,7 +433,6 @@ mod test { } #[test] - #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree fn test_make_path_option_vec() { let strs = [~"some/path", ~"some/other/path"]; @@ -448,7 +447,6 @@ mod test { } #[test] - #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree fn test_fileinput_read_byte() { let filenames = make_path_option_vec(vec::from_fn( 3, @@ -479,7 +477,6 @@ mod test { } #[test] - #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree fn test_fileinput_read() { let filenames = make_path_option_vec(vec::from_fn( 3, @@ -500,7 +497,6 @@ mod test { } #[test] - #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree fn test_input_vec() { let mut all_lines = ~[]; let filenames = make_path_option_vec(vec::from_fn( @@ -524,7 +520,6 @@ mod test { } #[test] - #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree fn test_input_vec_state() { let filenames = make_path_option_vec(vec::from_fn( 3, @@ -547,7 +542,6 @@ mod test { } #[test] - #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree fn test_empty_files() { let filenames = make_path_option_vec(vec::from_fn( 3, @@ -572,7 +566,6 @@ mod test { } #[test] - #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree fn test_no_trailing_newline() { let f1 = Some(Path("tmp/lib-fileinput-test-no-trailing-newline-1.tmp")); @@ -598,7 +591,6 @@ mod test { #[test] - #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree fn test_next_file() { let filenames = make_path_option_vec(vec::from_fn( 3, @@ -630,7 +622,6 @@ mod test { #[test] #[should_fail] - #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree fn test_input_vec_missing_file() { do input_vec(make_path_option_vec([~"this/file/doesnt/exist"], true)) |line| { println(line);