From 877fa4aed89eae2c2d393c016f212d65e927db60 Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Thu, 11 Apr 2024 16:29:59 -0400 Subject: [PATCH] feat(process_reports): default `--preset` to `reset-contradictory` This allows terser invocations for invocations without reports specified, which we've just barely started allowing. --- moz-webgpu-cts/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moz-webgpu-cts/src/main.rs b/moz-webgpu-cts/src/main.rs index 286e145..dd566b9 100644 --- a/moz-webgpu-cts/src/main.rs +++ b/moz-webgpu-cts/src/main.rs @@ -85,7 +85,7 @@ enum Subcommand { #[clap(long = "glob", value_name = "REPORT_GLOB")] report_globs: Vec, /// The heuristic for resolving differences between current metadata and processed reports. - #[clap(long)] + #[clap(long, default_value = "reset-contradictory")] preset: ReportProcessingPreset, }, /// Parse test metadata and re-emit it in normalized form.