summaryrefslogtreecommitdiff
path: root/t/t8005-blame-i18n.sh
diff options
context:
space:
mode:
authorBrandon Casey <casey@nrlssc.navy.mil>2009-05-22 23:47:05 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-05-23 05:40:22 (GMT)
commitbdb0a7e4e429860ce9dfe43401dda337dbbd0baa (patch)
tree07b56914e0cb921b8087f12c6995add2e2e81fd6 /t/t8005-blame-i18n.sh
parentbf1db7dba50205905cb27ff73586ae3a44b89bca (diff)
downloadgit-bdb0a7e4e429860ce9dfe43401dda337dbbd0baa.zip
git-bdb0a7e4e429860ce9dfe43401dda337dbbd0baa.tar.gz
git-bdb0a7e4e429860ce9dfe43401dda337dbbd0baa.tar.bz2
t8005: use more portable character encoding names
Some platforms do not have an extensive list of alternate names for character encodings. Solaris 7 does not know about shift-jis, but does know SJIS. It also does not know that utf-8 and UTF-8 refer to the same encoding. With the above in mind, the following conversions were performed: utf-8 --> UTF-8 shift-jis --> SJIS Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t8005-blame-i18n.sh')
-rwxr-xr-xt/t8005-blame-i18n.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/t8005-blame-i18n.sh b/t/t8005-blame-i18n.sh
index fcd5c26..75cbced 100755
--- a/t/t8005-blame-i18n.sh
+++ b/t/t8005-blame-i18n.sh
@@ -20,7 +20,7 @@ test_expect_success 'setup the repository' '
echo "SJIS LINE" >> file &&
git add file &&
- git config i18n.commitencoding shift-jis &&
+ git config i18n.commitencoding SJIS &&
git commit --author "$SJIS_NAME <sjis@localhost>" -m "$SJIS_MSG"
'
@@ -67,8 +67,8 @@ summary $UTF8_MSG
EOF
test_expect_success \
- 'blame respects --encoding=utf-8' '
- git blame --incremental --encoding=utf-8 file | \
+ 'blame respects --encoding=UTF-8' '
+ git blame --incremental --encoding=UTF-8 file | \
egrep "^(author|summary) " > actual &&
test_cmp actual expected
'