From 0f2ecbf963e9664f0dad45fba1cc9014e9fe96dc Mon Sep 17 00:00:00 2001 From: Thomas Otto Date: Thu, 17 Oct 2019 11:33:43 +0200 Subject: [PATCH] test output: improve readability on light backgrounds `bold()` now only writes bold text, not bold and white text --- test/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/run b/test/run index ed9f609db..13def5915 100755 --- a/test/run +++ b/test/run @@ -30,7 +30,7 @@ red() { } bold() { - printf "\033[1;37m$*\033[0;0m\n" + printf "\033[1m$*\033[0m\n" } test_failed() { -- 2.47.3