We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
OnSkipOnly::Ignore
2 parents f7e0119 + b26a997 commit 0205f22Copy full SHA for 0205f22
1 file changed
moz-webgpu-cts/src/process_reports.rs
@@ -521,7 +521,10 @@ pub(crate) fn process_reports(
521
&mut |meta_props, reported, key| {
522
let (platform, build_profile) = key;
523
(match on_skip_only {
524
- OnSkipOnly::Ignore => reported[&platform][&build_profile] != skip,
+ OnSkipOnly::Ignore => reported
525
+ .get(&platform)
526
+ .and_then(|r| r.get(&build_profile))
527
+ .is_none_or(|ex| ex != &skip),
528
OnSkipOnly::Reconcile => true,
529
}) && should_update_expected.test(meta_props, reported, key)
530
},
0 commit comments