From c5d0a5341feb09c8aea01a9451e0eaed211debdd Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Mon, 10 Jun 2024 16:46:11 +0200 Subject: [PATCH] add colors to testsuite --- usr/bin/archboot-testsuite.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/bin/archboot-testsuite.sh b/usr/bin/archboot-testsuite.sh index e963c043c..e10e92b20 100755 --- a/usr/bin/archboot-testsuite.sh +++ b/usr/bin/archboot-testsuite.sh @@ -16,10 +16,10 @@ _run_test () { } _result() { if [[ -s ${1} ]]; then - echo -e "\e[1m=> Test result: \e[1;91mFAILED\e[m" + echo -e "e[1;94m=> \e[1;91mFAILED\e[m" cat ${1} else - echo -e "\e[1m=> Test result: \e[1;92mOK\e[m" + echo -e "e[1;94m=> \e[1;92mOK\e[m" fi }