From 7675f1dd6008963af1aee5ec277817f6aa745505 Mon Sep 17 00:00:00 2001 From: Remzi Arpaci-Dusseau Date: Sun, 31 Mar 2019 09:06:54 -0500 Subject: [PATCH] a few nits with script with color and formatting of output --- tester/run-tests.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tester/run-tests.sh b/tester/run-tests.sh index 1823dd3..df08581 100755 --- a/tester/run-tests.sh +++ b/tester/run-tests.sh @@ -183,12 +183,13 @@ fi # do a one-time setup step if (( $skippre == 0 )); then if [[ -f tests/pre ]]; then - builtin echo -e "\e[32mdoing one-time pre-test\e[0m (use -s to suppress)" + builtin echo -e "\e[33mdoing one-time pre-test\e[0m (use -s to suppress)" source tests/pre if (( $? != 0 )); then echo "pre-test: failed" exit 1 fi + echo "" fi fi