From bb0fbb3ecdd728a633cbfefb56ee22ff958986e0 Mon Sep 17 00:00:00 2001 From: Thilo Fromm Date: Wed, 17 Dec 2025 12:38:25 +0100 Subject: [PATCH] ci-automation: fix broken result indicators in test reports The CI automation test report library used embedded images to indicate test success / failures. The URL these images were referenced from has gone AWOL some time ago, resulting in ugly "missing image" references in test reports. This change updates the test result indicator code to only use emojis. Signed-off-by: Thilo Fromm --- ci-automation/tapfile_helper_lib.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ci-automation/tapfile_helper_lib.sh b/ci-automation/tapfile_helper_lib.sh index a96f715143..49867ebf32 100644 --- a/ci-automation/tapfile_helper_lib.sh +++ b/ci-automation/tapfile_helper_lib.sh @@ -279,18 +279,18 @@ __md_print_test_verdict() { local failed_vendors="$4" - v="![${verdict}](https://via.placeholder.com/50x20/00ff00/000000?text=PASS)" + v="🟢 ${verdict}" if [ "${verdict}" = "not ok" ] ; then - v="![${verdict}](https://via.placeholder.com/50x20/ff0000/ffffff?text=FAIL)" + v="❌ ${verdict}" fi echo echo -n "${v} **${name}**" if [ -n "${succeded_vendors}" ] ; then - echo -n " 🟢 Succeeded: ${succeded_vendors}" + echo -n "; Succeeded: ${succeded_vendors}" fi if [ -n "${failed_vendors}" ] ; then - echo -n " ❌ Failed: ${failed_vendors}" + echo -n "; Failed: ${failed_vendors}" fi echo if [ "${verdict}" = "not ok" ] \