From: Joel Rosdahl Date: Wed, 27 Jul 2016 18:31:56 +0000 (+0200) Subject: test: Use same colors and wording for quicktest and test.sh status X-Git-Tag: v3.3~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5afd456829563fe7e8bf48df3e659f7c7d535a8e;p=thirdparty%2Fccache.git test: Use same colors and wording for quicktest and test.sh status --- diff --git a/test.sh b/test.sh index bc2d6e08b..df9170b75 100755 --- a/test.sh +++ b/test.sh @@ -3347,5 +3347,5 @@ done cd / rm -rf $ABS_TESTDIR -green OK +green PASSED exit 0 diff --git a/test/framework.c b/test/framework.c index a36551e78..1eafbcaa1 100644 --- a/test/framework.c +++ b/test/framework.c @@ -34,8 +34,8 @@ static char *dir_before_test; static int verbose; static const char COLOR_END[] = "\x1b[m"; -static const char COLOR_GREEN[] = "\x1b[32m"; -static const char COLOR_RED[] = "\x1b[31m"; +static const char COLOR_GREEN[] = "\x1b[1;32m"; +static const char COLOR_RED[] = "\x1b[1;31m"; #define COLOR(tty, color) ((tty) ? COLOR_ ## color : "")