aboutsummaryrefslogtreecommitdiff
path: root/t/t4201-shortlog.sh
diff options
context:
space:
mode:
authorBrandon Casey <drafnel@gmail.com>2009-12-03 11:52:45 -0600
committerJunio C Hamano <gitster@pobox.com>2009-12-03 10:06:13 -0800
commit3994e8a98dc7bbf67e61d23c8125f44383499a1f (patch)
treed52d9c092d9bd4b0c0556acffd393c683dbd74e2 /t/t4201-shortlog.sh
parent79f7ca063d6b74e9d7f3db90c85dfa4a162128e4 (diff)
downloadgit-3994e8a98dc7bbf67e61d23c8125f44383499a1f.tar.gz
git-3994e8a98dc7bbf67e61d23c8125f44383499a1f.tar.xz
t4201: use ISO8859-1 rather than ISO-8859-1
Some ancient platforms do not have an extensive list of alternate names for character encodings. For example, Solaris 7 and IRIX 6.5 do not know that ISO-8859-1 is the same as ISO8859-1. Modern platforms do know this, so use the older name. Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4201-shortlog.sh')
-rwxr-xr-xt/t4201-shortlog.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t4201-shortlog.sh b/t/t4201-shortlog.sh
index dd818f6fd..a01e55bf6 100755
--- a/t/t4201-shortlog.sh
+++ b/t/t4201-shortlog.sh
@@ -53,7 +53,7 @@ GIT_DIR=non-existing git shortlog -w < log > out
test_expect_success 'shortlog from non-git directory' 'test_cmp expect out'
iconvfromutf8toiso88591() {
- printf "%s" "$*" | iconv -f UTF-8 -t ISO-8859-1
+ printf "%s" "$*" | iconv -f UTF-8 -t ISO8859-1
}
DSCHO="Jöhännës \"Dschö\" Schindëlin"
@@ -72,7 +72,7 @@ test_expect_success 'shortlog encoding' '
git config --unset i18n.commitencoding &&
echo 2 > a1 &&
git commit --quiet -m "$MSG1" --author="$DSCHOE" a1 &&
- git config i18n.commitencoding "ISO-8859-1" &&
+ git config i18n.commitencoding "ISO8859-1" &&
echo 3 > a1 &&
git commit --quiet -m "$(iconvfromutf8toiso88591 "$MSG2")" \
--author="$(iconvfromutf8toiso88591 "$DSCHOE")" a1 &&