diff options
| author | bors <bors@rust-lang.org> | 2013-09-16 11:30:42 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-09-16 11:30:42 -0700 |
| commit | 0ec4d34b3f0fa1897ace96475a32ff0c8e15b33b (patch) | |
| tree | ac2eb072f640149efa009fdf710f7aa8fe2a523a /src/libextra | |
| parent | 250c3d47dfb56c0ef5581b8ff65958b226dc656a (diff) | |
| parent | 6d9c399ee2a462f14631fe2df905d16fad9a8143 (diff) | |
| download | rust-0ec4d34b3f0fa1897ace96475a32ff0c8e15b33b.tar.gz rust-0ec4d34b3f0fa1897ace96475a32ff0c8e15b33b.zip | |
auto merge of #9211 : klutzy/rust/win32-fix, r=alexcrichton
Diffstat (limited to 'src/libextra')
| -rw-r--r-- | src/libextra/fileinput.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/libextra/fileinput.rs b/src/libextra/fileinput.rs index 020da792ed7..25d11d413c0 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); |
