From 7292ba94b6c62fafcfc8d0d80539295be4b67dfb Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Tue, 8 Apr 2025 16:46:26 -0400 Subject: [PATCH] feat(migrate)!: ignore `SKIP`-only cases --- 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 a5f94fe7..823b5977 100644 --- a/moz-webgpu-cts/src/main.rs +++ b/moz-webgpu-cts/src/main.rs @@ -284,7 +284,7 @@ fn run(cli: Cli) -> ExitCode { exec_report_spec, process_reports::ReportProcessingPreset::MigrateTestStructure, &mut should_update_expected::NeverUpdateExpected, - OnSkipOnly::Reconcile.into(), + OnSkipOnly::Ignore.into(), ) { Ok(()) => ExitCode::SUCCESS, Err(AlreadyReportedToCommandline) => ExitCode::FAILURE,