From 09dff20c9cab0d5f93a00b5a18cadfb8f7dcd935 Mon Sep 17 00:00:00 2001 From: Anatoli Babenia Date: Thu, 30 Jul 2020 02:47:18 +0300 Subject: [PATCH] Add color to printed test names --- tests/run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run-tests.sh b/tests/run-tests.sh index 077874d..e8dce94 100644 --- a/tests/run-tests.sh +++ b/tests/run-tests.sh @@ -48,7 +48,7 @@ failed=0 while read -r number test_line; do - echo "Running $number: $test_line" + echo -e "\e[94mRunning $number: \e[96m$test_line\e[0m" if [ "$skip_online" = YES ]; then if [[ $test_line = *\[online\]* ]]; then echo "$number is [online]; skipping"