@@ -433,7 +433,6 @@ mod test {
433
433
}
434
434
435
435
#[ test]
436
- #[ ignore( cfg( windows) ) ] // FIXME(#8810): rt::io::file and windows don't agree
437
436
fn test_make_path_option_vec ( ) {
438
437
let strs = [ ~"some/path",
439
438
~"some/other/path"] ;
@@ -448,7 +447,6 @@ mod test {
448
447
}
449
448
450
449
#[test]
451
- #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree
452
450
fn test_fileinput_read_byte() {
453
451
let filenames = make_path_option_vec(vec::from_fn(
454
452
3,
@@ -479,7 +477,6 @@ mod test {
479
477
}
480
478
481
479
#[test]
482
- #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree
483
480
fn test_fileinput_read() {
484
481
let filenames = make_path_option_vec(vec::from_fn(
485
482
3,
@@ -500,7 +497,6 @@ mod test {
500
497
}
501
498
502
499
#[ test]
503
- #[ ignore( cfg( windows) ) ] // FIXME(#8810): rt::io::file and windows don't agree
504
500
fn test_input_vec( ) {
505
501
let mut all_lines = ~[ ] ;
506
502
let filenames = make_path_option_vec( vec:: from_fn(
@@ -524,7 +520,6 @@ mod test {
524
520
}
525
521
526
522
#[ test]
527
- #[ ignore( cfg( windows) ) ] // FIXME(#8810): rt::io::file and windows don't agree
528
523
fn test_input_vec_state( ) {
529
524
let filenames = make_path_option_vec( vec:: from_fn(
530
525
3 ,
@@ -547,7 +542,6 @@ mod test {
547
542
}
548
543
549
544
#[ test]
550
- #[ ignore( cfg( windows) ) ] // FIXME(#8810): rt::io::file and windows don't agree
551
545
fn test_empty_files( ) {
552
546
let filenames = make_path_option_vec( vec:: from_fn(
553
547
3 ,
@@ -572,7 +566,6 @@ mod test {
572
566
}
573
567
574
568
#[test]
575
- #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree
576
569
fn test_no_trailing_newline() {
577
570
let f1 =
578
571
Some(Path(" tmp/lib-fileinput-test-no-trailing-newline-1 . tmp"));
@@ -598,7 +591,6 @@ mod test {
598
591
599
592
600
593
#[test]
601
- #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree
602
594
fn test_next_file() {
603
595
let filenames = make_path_option_vec(vec::from_fn(
604
596
3,
@@ -630,7 +622,6 @@ mod test {
630
622
631
623
#[test]
632
624
#[should_fail]
633
- #[ignore(cfg(windows))] // FIXME(#8810): rt::io::file and windows don't agree
634
625
fn test_input_vec_missing_file() {
635
626
do input_vec(make_path_option_vec([~" this/file/doesnt/exist" ] , true ) ) |line| {
636
627
println( line) ;
0 commit comments