@@ -376,8 +376,6 @@ pub struct TestProps {
376
376
pub fail_mode : Option < FailMode > ,
377
377
// rustdoc will test the output of the `--test` option
378
378
pub check_test_line_numbers_match : bool ,
379
- // Do not pass `-Z ui-testing` to UI tests
380
- pub disable_ui_testing_normalization : bool ,
381
379
// customized normalization rules
382
380
pub normalize_stdout : Vec < ( String , String ) > ,
383
381
pub normalize_stderr : Vec < ( String , String ) > ,
@@ -422,7 +420,6 @@ impl TestProps {
422
420
fail_mode : None ,
423
421
ignore_pass : false ,
424
422
check_test_line_numbers_match : false ,
425
- disable_ui_testing_normalization : false ,
426
423
normalize_stdout : vec ! [ ] ,
427
424
normalize_stderr : vec ! [ ] ,
428
425
failure_status : -1 ,
@@ -569,11 +566,6 @@ impl TestProps {
569
566
self . ignore_pass = config. parse_ignore_pass ( ln) ;
570
567
}
571
568
572
- if !self . disable_ui_testing_normalization {
573
- self . disable_ui_testing_normalization =
574
- config. parse_disable_ui_testing_normalization ( ln) ;
575
- }
576
-
577
569
if let Some ( rule) = config. parse_custom_normalization ( ln, "normalize-stdout" ) {
578
570
self . normalize_stdout . push ( rule) ;
579
571
}
@@ -826,10 +818,6 @@ impl Config {
826
818
}
827
819
}
828
820
829
- fn parse_disable_ui_testing_normalization ( & self , line : & str ) -> bool {
830
- self . parse_name_directive ( line, "disable-ui-testing-normalization" )
831
- }
832
-
833
821
fn parse_check_test_line_numbers_match ( & self , line : & str ) -> bool {
834
822
self . parse_name_directive ( line, "check-test-line-numbers-match" )
835
823
}
0 commit comments