From 94983d0ced98e60c406c8607b52db4e25969d105 Mon Sep 17 00:00:00 2001 From: Sebastian Larsson Date: Wed, 16 Sep 2026 09:24:38 +0200 Subject: [PATCH] Arm backend: Restore quiet successful coverage checks Restore output capture dropped in 63d5e5510f when generalizing the operator support checks. Hide successful VGF and Ethos-U55 coverage output and print diagnostics only when the checker fails. Change-Id: I4900998558b7559b28459a7b1f5c52c545705269 Signed-off-by: Sebastian Larsson --- backends/arm/scripts/pre-push | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/backends/arm/scripts/pre-push b/backends/arm/scripts/pre-push index 96284645402..af37dc22f0d 100755 --- a/backends/arm/scripts/pre-push +++ b/backends/arm/scripts/pre-push @@ -78,6 +78,7 @@ run_op_support_checks() { local backend="$1" local backend_name="$2" local output="$3" + local coverage_output echo -e "${INFO} Generating ${backend_name} operator support documentation" @@ -95,7 +96,8 @@ run_op_support_checks() { echo -e "${INFO} Checking ${backend_name} operator support coverage" - if ! python "$OP_SUPPORT_SCRIPT" --backend "$backend" --check; then + if ! coverage_output=$(python "$OP_SUPPORT_SCRIPT" --backend "$backend" --check 2>&1); then + echo "$coverage_output" >&2 echo -e "${ERROR} ${backend_name} operator support coverage check failed" >&2 FAILED=1 else