@@ -376,8 +376,6 @@ pub struct TestProps {
376376 pub fail_mode : Option < FailMode > ,
377377 // rustdoc will test the output of the `--test` option
378378 pub check_test_line_numbers_match : bool ,
379- // Do not pass `-Z ui-testing` to UI tests
380- pub disable_ui_testing_normalization : bool ,
381379 // customized normalization rules
382380 pub normalize_stdout : Vec < ( String , String ) > ,
383381 pub normalize_stderr : Vec < ( String , String ) > ,
@@ -422,7 +420,6 @@ impl TestProps {
422420 fail_mode : None ,
423421 ignore_pass : false ,
424422 check_test_line_numbers_match : false ,
425- disable_ui_testing_normalization : false ,
426423 normalize_stdout : vec ! [ ] ,
427424 normalize_stderr : vec ! [ ] ,
428425 failure_status : -1 ,
@@ -569,11 +566,6 @@ impl TestProps {
569566 self . ignore_pass = config. parse_ignore_pass ( ln) ;
570567 }
571568
572- if !self . disable_ui_testing_normalization {
573- self . disable_ui_testing_normalization =
574- config. parse_disable_ui_testing_normalization ( ln) ;
575- }
576-
577569 if let Some ( rule) = config. parse_custom_normalization ( ln, "normalize-stdout" ) {
578570 self . normalize_stdout . push ( rule) ;
579571 }
@@ -826,10 +818,6 @@ impl Config {
826818 }
827819 }
828820
829- fn parse_disable_ui_testing_normalization ( & self , line : & str ) -> bool {
830- self . parse_name_directive ( line, "disable-ui-testing-normalization" )
831- }
832-
833821 fn parse_check_test_line_numbers_match ( & self , line : & str ) -> bool {
834822 self . parse_name_directive ( line, "check-test-line-numbers-match" )
835823 }
0 commit comments