]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
test: Use same colors and wording for quicktest and test.sh status
authorJoel Rosdahl <joel@rosdahl.net>
Wed, 27 Jul 2016 18:31:56 +0000 (20:31 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Wed, 27 Jul 2016 18:31:56 +0000 (20:31 +0200)
test.sh
test/framework.c

diff --git a/test.sh b/test.sh
index bc2d6e08be63c4c00ec5ce2cd8f396023058385f..df9170b75e88dbc4fa204907b2bdea565c91157d 100755 (executable)
--- a/test.sh
+++ b/test.sh
@@ -3347,5 +3347,5 @@ done
 
 cd /
 rm -rf $ABS_TESTDIR
-green OK
+green PASSED
 exit 0
index a36551e784e43c48ba4a7136f1b2d56fced37fcf..1eafbcaa19669f470bd8aab7f98835712eb39eff 100644 (file)
@@ -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 : "")