From cc85d5a6565fd4f576ad7daf3764a05c4c1e2744 Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Tue, 31 Mar 2026 07:25:52 +0200 Subject: [PATCH] Addressed copilot's comment --- .github/workflows/wolfboot-integration.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/wolfboot-integration.yml b/.github/workflows/wolfboot-integration.yml index a7d6ff405e..747bc1b310 100644 --- a/.github/workflows/wolfboot-integration.yml +++ b/.github/workflows/wolfboot-integration.yml @@ -231,8 +231,10 @@ jobs: ./tools/keytools/sign --ed25519 --sha256 test.bin wolfboot_signing_private_key.der 1 make test-lib SIGN=ED25519 HASH=SHA256 + set +e success_output=$(./test-lib test_v1_signed.bin 2>&1) success_status=$? + set -e printf '%s\n' "$success_output" if [ "$success_status" -ne 0 ]; then echo "Expected success, but test-lib failed"