File tree 1 file changed +6
-3
lines changed
src/tools/compiletest/src
1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -2606,8 +2606,11 @@ impl<'test> TestCx<'test> {
2606
2606
2607
2607
let fixture_path = expected_output_path ( & self . testpaths , None , & None , UI_FIXED ) ;
2608
2608
2609
- // TODO(killercup): Add `nll.rs.fixed` files matching
2610
- let nll = self . config . compare_mode . as_ref ( ) . map ( |x| * x == CompareMode :: Nll ) . unwrap_or ( false ) ;
2609
+ // FIXME(killercup): Add `nll.rs.fixed` files matching
2610
+ let nll = self . config . compare_mode
2611
+ . as_ref ( )
2612
+ . map ( |x| * x == CompareMode :: Nll )
2613
+ . unwrap_or ( false ) ;
2611
2614
if fixture_path. exists ( ) && !nll {
2612
2615
use std:: collections:: HashSet ;
2613
2616
use rustfix:: { apply_suggestions, get_suggestions_from_json} ;
@@ -2620,7 +2623,7 @@ impl<'test> TestCx<'test> {
2620
2623
let errors = self . compare_output ( "rs.fixed" , & fixed_code, & expected_fixed) ;
2621
2624
if errors > 0 {
2622
2625
panic ! ( "rustfix produced different fixed file!" ) ;
2623
- // TODO : Add info for update-references.sh call
2626
+ // FIXME(killercup) : Add info for update-references.sh call
2624
2627
}
2625
2628
}
2626
2629
}
You can’t perform that action at this time.
0 commit comments