diff options
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | tests/common.sh | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index db8b53b..85a1be4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -62,7 +62,7 @@ do_subst = sed \ -e "s|[@]profiles[@]|$(profiles)|g" \ -e "s|[@]textdomain[@]|$(textdomain)|g" -AM_TESTS_ENVIRONMENT = srcdir=$(top_srcdir) +AM_TESTS_ENVIRONMENT = srcdir=$(top_srcdir) COLOR_TEST_LOGS=$(COLOR_TEST_LOGS) all-local: $(locale_MESSAGES) touch .builddirstamp diff --git a/tests/common.sh b/tests/common.sh index 93f8d53..f7467ee 100644 --- a/tests/common.sh +++ b/tests/common.sh @@ -55,3 +55,14 @@ assert() tests_es=1 fi } + +if [ "x${COLOR_TEST_LOGS:-no}" = 'xno' ]; then + red= grn= lgn= blu= mgn= std= +else + red='[0;31m' # Red. + grn='[0;32m' # Green. + lgn='[1;32m' # Light green. + blu='[1;34m' # Blue. + mgn='[0;35m' # Magenta. + std='[m' # No color. +fi |