Browse Source
This removes the ability to inject "poison" gettext() messages via the GIT_TEST_GETTEXT_POISON special test setup. I initially added this as a compile-time option inmaintbb946bba76
(i18n: add GETTEXT_POISON to simulate unfriendly translator, 2011-02-22), and most recently modified to be toggleable at runtime in6cdccfce1e
(i18n: make GETTEXT_POISON a runtime option, 2018-11-08).. The reason for its removal is that the trade-off of maintaining it v.s. what it's getting us has long since flipped. When gettext was integrated in5e9637c629
(i18n: add infrastructure for translating Git with gettext, 2011-11-18) there was understandable concern on the Git ML that in marking messages for translation en-masse we'd inadvertently mark plumbing messages. The GETTEXT_POISON facility was a way to smoke those out via our test suite. Nowadays however we're done (or almost entirely done) with any marking of messages for translation. New messages are usually marked by their authors, who'll know whether it makes sense to translate them or not. If not any errors in marking the messages are much more likely to be spotted in review than in the the initial deluge of i18n patches in the 2011-2012 era. So let's just remove this. This leaves the test suite in a state where we still have a lot of test_i18n, C_LOCALE_OUTPUT etc. uses. Subsequent commits will remove those too. The change to t/lib-rebase.sh is a selective revert of the relevant part off2d17068fd
(i18n: rebase-interactive: mark comments of squash for translation, 2016-06-17), and the comment in t/t3406-rebase-message.sh is fromc7108bf9ed
(i18n: rebase: mark messages for translation, 2012-07-25). Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Ævar Arnfjörð Bjarmason
4 years ago
committed by
Junio C Hamano
14 changed files with 21 additions and 160 deletions
@ -1,39 +0,0 @@
@@ -1,39 +0,0 @@
|
||||
#!/bin/sh |
||||
# |
||||
# Copyright (c) 2010 Ævar Arnfjörð Bjarmason |
||||
# |
||||
|
||||
test_description='Gettext Shell poison' |
||||
|
||||
GIT_TEST_GETTEXT_POISON=true |
||||
export GIT_TEST_GETTEXT_POISON |
||||
. ./lib-gettext.sh |
||||
|
||||
test_expect_success 'sanity: $GIT_INTERNAL_GETTEXT_SH_SCHEME" is poison' ' |
||||
test "$GIT_INTERNAL_GETTEXT_SH_SCHEME" = "poison" |
||||
' |
||||
|
||||
test_expect_success 'gettext: our gettext() fallback has poison semantics' ' |
||||
printf "# GETTEXT POISON #" >expect && |
||||
gettext "test" >actual && |
||||
test_cmp expect actual && |
||||
printf "# GETTEXT POISON #" >expect && |
||||
gettext "test more words" >actual && |
||||
test_cmp expect actual |
||||
' |
||||
|
||||
test_expect_success 'eval_gettext: our eval_gettext() fallback has poison semantics' ' |
||||
printf "# GETTEXT POISON #" >expect && |
||||
eval_gettext "test" >actual && |
||||
test_cmp expect actual && |
||||
printf "# GETTEXT POISON #" >expect && |
||||
eval_gettext "test more words" >actual && |
||||
test_cmp expect actual |
||||
' |
||||
|
||||
test_expect_success "gettext: invalid GIT_TEST_GETTEXT_POISON value doesn't infinitely loop" " |
||||
test_must_fail env GIT_TEST_GETTEXT_POISON=xyz git version 2>error && |
||||
grep \"fatal: bad numeric config value 'xyz' for 'GIT_TEST_GETTEXT_POISON': invalid unit\" error |
||||
" |
||||
|
||||
test_done |
Loading…
Reference in new issue