On 2014-12-06 20.44, Yi, EungJun wrote:
> Could you tell me your locale information from executing 'locale'
> command and the verbose message you can get by accessing any git
> repository via HTTP protocol? (e.g. GIT_CURL_VERBOSE=1 git clone
> http://github.com/foo/bar )
locale -a
C
C.UTF-8
en_US.utf8
icelandic
is_IS
is_IS.iso88591
is_IS.utf8
POSIX
-----------------------------
After patching like this:
diff --git a/t/t5550-http-fetch-dumb.sh b/t/t5550-http-fetch-dumb.sh
index fc6e7fc..1e42b42 100755
--- a/t/t5550-http-fetch-dumb.sh
+++ b/t/t5550-http-fetch-dumb.sh
@@ -205,8 +205,8 @@ check_language () {
LANG=$5 \
git ls-remote "$HTTPD_URL/dumb/repo.git" 2>&1 |
tr -d '\015' |
- sort -u >stderr &&
- grep -i ^Accept-Language: stderr >actual &&
+ sort -u >stderr
+ grep -i ^Accept-Language: stderr >actual
test_cmp expect actual
}
-----------
I get this:
expecting success:
check_language "ko-KR, *;q=0.1" ko_KR.UTF-8 de_DE.UTF-8 ja_JP.UTF-8
en_US.UTF-8 &&
check_language "de-DE, *;q=0.1" "" de_DE.UTF-8 ja_JP.UTF-8
en_US.UTF-8 &&
check_language "ja-JP, *;q=0.1" "" "" ja_JP.UTF-8
en_US.UTF-8 &&
check_language "en-US, *;q=0.1" "" "" ""
en_US.UTF-8
--- expect 2014-12-06 21:00:59.000000000 +0000
+++ actual 2014-12-06 21:00:59.000000000 +0000
@@ -1 +0,0 @@
-Accept-Language: de-DE, *;q=0.1
not ok 25 - git client sends Accept-Language based on LANGUAGE, LC_ALL,
LC_MESSAGES and LANG
#
# check_language "ko-KR, *;q=0.1" ko_KR.UTF-8 de_DE.UTF-8
ja_JP.UTF-8 en_US.UTF-8 &&
# check_language "de-DE, *;q=0.1" "" de_DE.UTF-8
ja_JP.UTF-8 en_US.UTF-8 &&
# check_language "ja-JP, *;q=0.1" "" ""
ja_JP.UTF-8 en_US.UTF-8 &&
# check_language "en-US, *;q=0.1" "" "" ""
en_US.UTF-8
#
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html