We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cde2e99 commit 1a3841fCopy full SHA for 1a3841f
1 file changed
moz-webgpu-cts/src/main.rs
@@ -789,7 +789,17 @@ fn run(cli: Cli) -> ExitCode {
789
fmt_err_found = true;
790
render_metadata_parse_errors(&path, &file_contents, errors);
791
}
792
- Ok(file) => {
+ Ok(mut file) => {
793
+ for test in file.tests.values_mut() {
794
+ for subtest in &mut test.subtests.values_mut() {
795
+ if let Some(expected) = subtest.properties.expectations.as_mut() {
796
+ for (_, expected) in expected.iter_mut() {
797
+ taint_subtest_timeouts_by_suspicion(expected);
798
+ }
799
800
801
802
+
803
match write_to_file(&path, metadata::format_file(&file)) {
804
Ok(()) => (),
805
Err(AlreadyReportedToCommandline) => {
0 commit comments