diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-01-14 15:29:30 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-01-14 15:29:30 -0800 |
commit | 20b3bc155864730380e8186f7d71ee2196a79603 (patch) | |
tree | f1596c3324917b7fbbc652cd808a1b59e77483e2 /t/t5409-colorize-remote-messages.sh | |
parent | Merge branch 'cb/test-lint-cp-a' (diff) | |
parent | sideband: color lines with keyword only (diff) | |
download | tgif-20b3bc155864730380e8186f7d71ee2196a79603.tar.xz |
Merge branch 'hn/highlight-sideband-keywords'
Lines that begin with a certain keyword that come over the wire, as
well as lines that consist only of one of these keywords, ought to
be painted in color for easier eyeballing, but the latter was
broken ever since the feature was introduced in 2.19, which has
been corrected.
* hn/highlight-sideband-keywords:
sideband: color lines with keyword only
Diffstat (limited to 't/t5409-colorize-remote-messages.sh')
-rwxr-xr-x | t/t5409-colorize-remote-messages.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/t5409-colorize-remote-messages.sh b/t/t5409-colorize-remote-messages.sh index f81b6813c0..2a8c449661 100755 --- a/t/t5409-colorize-remote-messages.sh +++ b/t/t5409-colorize-remote-messages.sh @@ -17,6 +17,7 @@ test_expect_success 'setup' ' echo " " "error: leading space" echo " " echo Err + echo SUCCESS exit 0 EOF echo 1 >file && @@ -35,6 +36,7 @@ test_expect_success 'keywords' ' grep "<BOLD;RED>error<RESET>: error" decoded && grep "<YELLOW>hint<RESET>:" decoded && grep "<BOLD;GREEN>success<RESET>:" decoded && + grep "<BOLD;GREEN>SUCCESS<RESET>" decoded && grep "<BOLD;YELLOW>warning<RESET>:" decoded ' |