File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -608,15 +608,15 @@ fn run(cli: Cli) -> ExitCode {
608608 } = test;
609609
610610 let TestProps {
611- is_disabled ,
611+ disabled ,
612612 expected,
613613 implementation_status : _,
614614 tags : _,
615615 } = properties;
616616
617617 let test_name = Arc :: new ( test_name) ;
618618
619- if is_disabled {
619+ if disabled . is_some_and ( |d| d . iter ( ) . any ( | ( _ , val ) | val . is_disabled ( ) ) ) {
620620 analysis. for_each_platform_mut ( |analysis| {
621621 analysis
622622 . tests_with_disabled_or_skip
@@ -733,13 +733,13 @@ fn run(cli: Cli) -> ExitCode {
733733
734734 let Subtest { properties } = subtest;
735735 let TestProps {
736- is_disabled ,
736+ disabled ,
737737 expected,
738738 implementation_status : _,
739739 tags : _,
740740 } = properties;
741741
742- if is_disabled {
742+ if disabled . is_some_and ( |d| d . iter ( ) . any ( | ( _ , val ) | val . is_disabled ( ) ) ) {
743743 analysis
744744 . windows
745745 . tests_with_disabled_or_skip
You can’t perform that action at this time.
0 commit comments