Make git-prune-packed a bit more chatty.
[gitweb.git] / t / t3900-i18n-commit.sh
index 879b69793c547d26e56f12758c2ed1a0c7da51f6..6714b0dd6e6164eb17174465be536ee3a07d88e1 100755 (executable)
@@ -8,7 +8,7 @@ test_description='commit and log output encodings'
 . ./test-lib.sh
 
 compare_with () {
-       git-show -s "$1" | sed -e '1,/^$/d' -e 's/^    //' -e '$d' >current &&
+       git-show -s $1 | sed -e '1,/^$/d' -e 's/^    //' -e '$d' >current &&
        diff -u current "$2"
 }
 
@@ -101,4 +101,22 @@ do
        '
 done
 
+for J in EUCJP ISO-2022-JP
+do
+       git-repo-config i18n.logoutputencoding $J
+       for H in EUCJP ISO-2022-JP
+       do
+               test_expect_success "$H should be shown in $J now" '
+                       compare_with '$H' ../t3900/'$J'.txt
+               '
+       done
+done
+
+for H in ISO-8859-1 EUCJP ISO-2022-JP
+do
+       test_expect_success "No conversion with $H" '
+               compare_with "--encoding=none '$H'" ../t3900/'$H'.txt
+       '
+done
+
 test_done