We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
update-expected
process-reports
1 parent bc82253 commit 38e10e6Copy full SHA for 38e10e6
1 file changed
moz-webgpu-cts/src/main.rs
@@ -75,7 +75,8 @@ enum Subcommand {
75
/// With both steps, you may delete the local copies of these reports after being processed
76
/// with `process-reports`. You should not need to re-process them unless you have made an
77
/// error in following these steps.
78
- ProcessReports {
+ #[clap(alias = "process-reports")]
79
+ UpdateExpected {
80
/// Direct paths to report files to be processed.
81
report_paths: Vec<PathBuf>,
82
/// Cross-platform `wax` globs to enumerate report files to be processed.
@@ -189,7 +190,7 @@ fn run(cli: Cli) -> ExitCode {
189
190
}
191
192
match subcommand {
- Subcommand::ProcessReports {
193
+ Subcommand::UpdateExpected {
194
report_globs,
195
report_paths,
196
preset,
0 commit comments