diff options
| author | Abhishek Kumar <abhishekkumar8222@gmail.com> | 2020-02-24 19:08:14 +0530 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2020-02-24 13:15:04 -0800 |
| commit | ffe005576ac2bd46021fc80112ba7e8e0ab5dd10 (patch) | |
| tree | f2c384d7aa7350d176bb31814a8f257355a93d4d /t/lib-log-graph.sh | |
| parent | 989eea958bb3a334c73abcfffb9aa3ec3ed56766 (diff) | |
| download | git-ffe005576ac2bd46021fc80112ba7e8e0ab5dd10.tar.gz | |
lib-log-graph: consolidate colored graph cmp logic
Signed-off-by: Abhishek Kumar <abhishekkumar8222@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/lib-log-graph.sh')
| -rwxr-xr-x | t/lib-log-graph.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/t/lib-log-graph.sh b/t/lib-log-graph.sh index f9c6526eff..1184cceef2 100755 --- a/t/lib-log-graph.sh +++ b/t/lib-log-graph.sh @@ -20,3 +20,9 @@ lib_test_cmp_short_graph () { sanitize_log_output >output.sanitized <output && test_i18ncmp expect output.sanitized } + +lib_test_cmp_colored_graph () { + git log --graph --color=always "$@" >output.colors.raw && + test_decode_color <output.colors.raw | sed "s/ *\$//" >output.colors && + test_cmp expect.colors output.colors +} |
