projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4b46e22
)
t3900: test log --encoding=none
author
Junio C Hamano
<junkio@cox.net>
Sat, 30 Dec 2006 10:35:14 +0000
(
02:35
-0800)
committer
Junio C Hamano
<junkio@cox.net>
Sat, 30 Dec 2006 10:36:02 +0000
(
02:36
-0800)
Signed-off-by: Junio C Hamano <junkio@cox.net>
t/t3900-i18n-commit.sh
patch
|
blob
|
history
diff --git
a/t/t3900-i18n-commit.sh
b/t/t3900-i18n-commit.sh
index 46fd47cb0fedea8831d155d04651deb2b21d2e7c..6714b0dd6e6164eb17174465be536ee3a07d88e1 100755
(executable)
--- 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