summaryrefslogtreecommitdiff
path: root/t/t4205-log-pretty-formats.sh
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2021-02-28 11:22:26 (GMT)
committerJunio C Hamano <gitster@pobox.com>2021-03-01 17:42:17 (GMT)
commit09fe8ca92e4f0269bd7914b5010731a09948abf0 (patch)
treed47ec139884a63225fe23c13688ff28a925e76c6 /t/t4205-log-pretty-formats.sh
parentb081547ec1de57162f2c1c7748aa09c861413d34 (diff)
downloadgit-09fe8ca92e4f0269bd7914b5010731a09948abf0.zip
git-09fe8ca92e4f0269bd7914b5010731a09948abf0.tar.gz
git-09fe8ca92e4f0269bd7914b5010731a09948abf0.tar.bz2
t4205: assert %(describe) test coverage
Document that the test is covering both describable and undescribable commits. Suggested-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: René Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4205-log-pretty-formats.sh')
-rwxr-xr-xt/t4205-log-pretty-formats.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/t/t4205-log-pretty-formats.sh b/t/t4205-log-pretty-formats.sh
index 7e36706..3b09891 100755
--- a/t/t4205-log-pretty-formats.sh
+++ b/t/t4205-log-pretty-formats.sh
@@ -965,8 +965,17 @@ test_expect_success 'log --pretty=reference is colored appropriately' '
test_expect_success '%(describe) vs git describe' '
git log --format="%H" | while read hash
do
- echo "$hash $(git describe $hash)"
+ if desc=$(git describe $hash)
+ then
+ : >expect-contains-good
+ else
+ : >expect-contains-bad
+ fi &&
+ echo "$hash $desc"
done >expect &&
+ test_path_exists expect-contains-good &&
+ test_path_exists expect-contains-bad &&
+
git log --format="%H %(describe)" >actual 2>err &&
test_cmp expect actual &&
test_must_be_empty err