commit 3a0a738f5a5b769d78bf1da866e5ac8fb819bc0e
parent c31f1b36d63138fe9e67742fab9a0bd9e0713462
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Wed, 18 Oct 2023 15:26:41 +0200
Updating the escape sequence in messages displayed by "make test
Some shells (e.g. dash) don't support the '\e' character in printf: the
escape sequence is simply ignored. So we've replaced '\e' with '\033'
in the printf used to display colored messages in "make test". This
should work as expected in all shells.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/make.sh b/make.sh
@@ -75,9 +75,9 @@ run_test()
printf "%s " "${test}"
if ./"${test}" > /dev/null 2>&1; then
- printf "\e[1;32mOK\e[m\n"
+ printf "\033[1;32mOK\033[m\n"
else
- printf "\e[1;31mError\e[m\n"
+ printf "\033[1;31mError\033[m\n"
n=$((n+1))
fi
done 2> /dev/null