diff options
author | Junio C Hamano <junkio@cox.net> | 2006-12-30 02:35:14 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-30 02:36:02 -0800 |
commit | 000792830b8ca96e6d973545192cba8d5df48279 (patch) | |
tree | b33b2184b6d5893960f287cd1eae9a256dc7af9f /t | |
parent | commit re-encoding: fix confusion between no and default conversion. (diff) | |
download | tgif-000792830b8ca96e6d973545192cba8d5df48279.tar.xz |
t3900: test log --encoding=none
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't')
-rwxr-xr-x | t/t3900-i18n-commit.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/t/t3900-i18n-commit.sh b/t/t3900-i18n-commit.sh index 46fd47cb0f..6714b0dd6e 100755 --- a/t/t3900-i18n-commit.sh +++ b/t/t3900-i18n-commit.sh @@ -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" } @@ -112,4 +112,11 @@ do 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 |