Merge branch 'jk/index-pack-threading-races'
[gitweb.git] / t / t4205-log-pretty-formats.sh
index de0cc4a0fd5fe37bb36a3268182d95de3589f4b4..9b75399572b1cbe1bfcb00995e1660a93fe6a4c6 100755 (executable)
@@ -438,6 +438,14 @@ test_expect_success 'strbuf_utf8_replace() not producing NUL' '
        ! 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 |
+       sed -e "s/ /T/; s/ //; s/..\$/:&/" >expected &&
+       git log --format=%aI%n%cI >actual &&
+       test_cmp expected actual
+'
+
 # get new digests (with no abbreviations)
 head1=$(git rev-parse --verify HEAD~0) &&
 head2=$(git rev-parse --verify HEAD~1) &&