t5520: test for failure if index has unresolved entries
[gitweb.git] / t / t4205-log-pretty-formats.sh
index f2f748399d4b3066ef3cf16ae28ec99e698e1d72..7398605e7b894259548f257aaf3e92d9481534eb 100755 (executable)
@@ -431,6 +431,13 @@ EOF
        test_cmp expected actual
 '
 
+test_expect_success 'strbuf_utf8_replace() not producing NUL' '
+       git log --color --pretty="tformat:%<(10,trunc)%s%>>(10,ltrunc)%C(auto)%d" |
+               test_decode_color |
+               nul_to_q >actual &&
+       ! grep Q actual
+'
+
 # ISO strict date format
 test_expect_success 'ISO and ISO-strict date formats display the same values' '
        git log --format=%ai%n%ci |
@@ -458,4 +465,15 @@ EOF
        test_cmp expected actual1
 '
 
+test_expect_success 'clean log decoration' '
+       git log --no-walk --tags --pretty="%H %D" --decorate=full >actual &&
+       cat >expected <<EOF &&
+$head1 tag: refs/tags/tag2
+$head2 tag: refs/tags/message-one
+$old_head1 tag: refs/tags/message-two
+EOF
+       sort actual >actual1 &&
+       test_cmp expected actual1
+'
+
 test_done