* [PATCH] t5510: become resilient to GETTEXT_POISON
@ 2016-07-25 9:31 Vasco Almeida
2016-07-25 15:16 ` Junio C Hamano
2016-07-26 12:58 ` [PATCH] t5510: skip tests under GETTEXT_POISON build Vasco Almeida
0 siblings, 2 replies; 6+ messages in thread
From: Vasco Almeida @ 2016-07-25 9:31 UTC (permalink / raw)
To: git; +Cc: Vasco Almeida, Nguyễn Thái Ngọc Duy
Replace gettext poison text with appropriate values to be able to cut
the right output of git fetch command for comparison.
The first gettext poison falls from the previous line into the next
because the poison does not add a newline, so we must replace it with
nothing.
Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
---
t/t5510-fetch.sh | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/t/t5510-fetch.sh b/t/t5510-fetch.sh
index 6bd4853..b261223 100755
--- a/t/t5510-fetch.sh
+++ b/t/t5510-fetch.sh
@@ -694,7 +694,10 @@ test_expect_success 'fetch aligned output' '
(
cd full-output &&
git -c fetch.output=full fetch origin 2>&1 | \
- grep -e "->" | cut -c 22- >../actual
+ grep -e "->" | \
+ sed -e "/master/ s/# GETTEXT POISON #//" \
+ -e "/tag/ s/# GETTEXT POISON #/[new tag] /" | \
+ cut -c 22- >../actual
) &&
cat >expect <<-\EOF &&
master -> origin/master
@@ -709,7 +712,10 @@ test_expect_success 'fetch compact output' '
(
cd compact &&
git -c fetch.output=compact fetch origin 2>&1 | \
- grep -e "->" | cut -c 22- >../actual
+ grep -e "->" | \
+ sed -e "/master/ s/# GETTEXT POISON #//" \
+ -e "/extraa/ s/# GETTEXT POISON #/[new tag] /" | \
+ cut -c 22- >../actual
) &&
cat >expect <<-\EOF &&
master -> origin/*
--
2.7.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] t5510: become resilient to GETTEXT_POISON
2016-07-25 9:31 [PATCH] t5510: become resilient to GETTEXT_POISON Vasco Almeida
@ 2016-07-25 15:16 ` Junio C Hamano
2016-07-25 16:07 ` Duy Nguyen
2016-07-26 12:58 ` [PATCH] t5510: skip tests under GETTEXT_POISON build Vasco Almeida
1 sibling, 1 reply; 6+ messages in thread
From: Junio C Hamano @ 2016-07-25 15:16 UTC (permalink / raw)
To: Vasco Almeida; +Cc: Git Mailing List, Nguyễn Thái Ngọc Duy
On Mon, Jul 25, 2016 at 2:31 AM, Vasco Almeida <vascomalmeida@sapo.pt> wrote:
> Replace gettext poison text with appropriate values to be able to cut
> the right output of git fetch command for comparison.
Hmm, as these tests are _all_ about human-readable output, it probably is
sufficient to skip them using prerequiste, I would think. We do not want each
individual test to have too intimate knowledge on how POISON strings look
like.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] t5510: become resilient to GETTEXT_POISON
2016-07-25 15:16 ` Junio C Hamano
@ 2016-07-25 16:07 ` Duy Nguyen
0 siblings, 0 replies; 6+ messages in thread
From: Duy Nguyen @ 2016-07-25 16:07 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Vasco Almeida, Git Mailing List
On Mon, Jul 25, 2016 at 5:16 PM, Junio C Hamano <gitster@pobox.com> wrote:
> On Mon, Jul 25, 2016 at 2:31 AM, Vasco Almeida <vascomalmeida@sapo.pt> wrote:
>> Replace gettext poison text with appropriate values to be able to cut
>> the right output of git fetch command for comparison.
>
> Hmm, as these tests are _all_ about human-readable output, it probably is
> sufficient to skip them using prerequiste, I would think. We do not want each
> individual test to have too intimate knowledge on how POISON strings look
> like.
Yeah these tests are about alignment, they are probably useless
anyway after the text is poisoned (and has the same length).
--
Duy
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] t5510: skip tests under GETTEXT_POISON build
2016-07-25 9:31 [PATCH] t5510: become resilient to GETTEXT_POISON Vasco Almeida
2016-07-25 15:16 ` Junio C Hamano
@ 2016-07-26 12:58 ` Vasco Almeida
2016-07-26 16:53 ` Junio C Hamano
1 sibling, 1 reply; 6+ messages in thread
From: Vasco Almeida @ 2016-07-26 12:58 UTC (permalink / raw)
To: git; +Cc: Vasco Almeida, Nguyễn Thái Ngọc Duy,
Junio C Hamano
Skip tests when running under GETTEXT_POISON build and run them with
C_LOCALE_OUTPUT prerequisite.
These tests are irrelevant under GETTEXT_POISON because they test text
output alignment which GETTEXT_POISON turns useless.
Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
---
t/t5510-fetch.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/t/t5510-fetch.sh b/t/t5510-fetch.sh
index 6bd4853..668c54b 100755
--- a/t/t5510-fetch.sh
+++ b/t/t5510-fetch.sh
@@ -688,7 +688,7 @@ test_expect_success 'fetching with auto-gc does not lock up' '
)
'
-test_expect_success 'fetch aligned output' '
+test_expect_success C_LOCALE_OUTPUT 'fetch aligned output' '
git clone . full-output &&
test_commit looooooooooooong-tag &&
(
@@ -703,7 +703,7 @@ test_expect_success 'fetch aligned output' '
test_cmp expect actual
'
-test_expect_success 'fetch compact output' '
+test_expect_success C_LOCALE_OUTPUT 'fetch compact output' '
git clone . compact &&
test_commit extraaa &&
(
--
2.7.4
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] t5510: skip tests under GETTEXT_POISON build
2016-07-26 12:58 ` [PATCH] t5510: skip tests under GETTEXT_POISON build Vasco Almeida
@ 2016-07-26 16:53 ` Junio C Hamano
2016-07-26 20:11 ` Ævar Arnfjörð Bjarmason
0 siblings, 1 reply; 6+ messages in thread
From: Junio C Hamano @ 2016-07-26 16:53 UTC (permalink / raw)
To: Vasco Almeida; +Cc: git, Nguyễn Thái Ngọc Duy
Vasco Almeida <vascomalmeida@sapo.pt> writes:
> Skip tests when running under GETTEXT_POISON build and run them with
> C_LOCALE_OUTPUT prerequisite.
>
> These tests are irrelevant under GETTEXT_POISON because they test text
> output alignment which GETTEXT_POISON turns useless.
>
> Signed-off-by: Vasco Almeida <vascomalmeida@sapo.pt>
> ---
> t/t5510-fetch.sh | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/t/t5510-fetch.sh b/t/t5510-fetch.sh
> index 6bd4853..668c54b 100755
> --- a/t/t5510-fetch.sh
> +++ b/t/t5510-fetch.sh
> @@ -688,7 +688,7 @@ test_expect_success 'fetching with auto-gc does not lock up' '
> )
> '
>
> -test_expect_success 'fetch aligned output' '
> +test_expect_success C_LOCALE_OUTPUT 'fetch aligned output' '
> git clone . full-output &&
> test_commit looooooooooooong-tag &&
> (
> @@ -703,7 +703,7 @@ test_expect_success 'fetch aligned output' '
> test_cmp expect actual
> '
>
> -test_expect_success 'fetch compact output' '
> +test_expect_success C_LOCALE_OUTPUT 'fetch compact output' '
> git clone . compact &&
> test_commit extraaa &&
> (
Makes sense, will queue.
This is a tangent, but it may make sense for us to start thinking
about retiring one of the two prerequisites, GETTEXT_POISON and
C_LOCALE_OUTPUT. Back when 5e9637c6 (i18n: add infrastructure for
translating Git with gettext, 2011-11-18) introduced the former,
test_have_prereq did not support a negated prerequisite, so the
commit added GETTEXT_POISON prerequisite; if we had the modern
test_have_prereq, we would have written
test_expect_success GETTEXT_POISON '...'
that appear in t0205 as
test_expect_success !C_LOCALE_OUTPUT '...'
I would think.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] t5510: skip tests under GETTEXT_POISON build
2016-07-26 16:53 ` Junio C Hamano
@ 2016-07-26 20:11 ` Ævar Arnfjörð Bjarmason
0 siblings, 0 replies; 6+ messages in thread
From: Ævar Arnfjörð Bjarmason @ 2016-07-26 20:11 UTC (permalink / raw)
To: Junio C Hamano; +Cc: Vasco Almeida, Git, Nguyễn Thái Ngọc
On Tue, Jul 26, 2016 at 6:53 PM, Junio C Hamano <gitster@pobox.com> wrote:
> [...] Back when 5e9637c6 (i18n: add infrastructure for
> translating Git with gettext, 2011-11-18) introduced the former,
> test_have_prereq did not support a negated prerequisite, so the
> commit added GETTEXT_POISON prerequisite; if we had the modern
> test_have_prereq, we would have written
>
> test_expect_success GETTEXT_POISON '...'
>
> that appear in t0205 as
>
> test_expect_success !C_LOCALE_OUTPUT '...'
>
> I would think.
Maybe the names of the test prerequisites should be merged. I can't
think of a rea
As for the GETTEXT_POISON facility in general, I haven't worked much
if at all on the i18n toolchain since I initially wrote the gettext
support so I think at this point it's for others to say whether stuff
like this is useful.
But for what it's worth the v1.7.4.1-65-gbb946bb commit explains
better what it's for:
This is a debugging aid for people who are working on the i18n part of
the system, to make sure that they are not marking plumbing messages
that should never be translated with _().
I.e. so the person gettext-izing something can actively spot issues
with marking strings for translations right away.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2016-07-26 20:13 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-25 9:31 [PATCH] t5510: become resilient to GETTEXT_POISON Vasco Almeida
2016-07-25 15:16 ` Junio C Hamano
2016-07-25 16:07 ` Duy Nguyen
2016-07-26 12:58 ` [PATCH] t5510: skip tests under GETTEXT_POISON build Vasco Almeida
2016-07-26 16:53 ` Junio C Hamano
2016-07-26 20:11 ` Ævar Arnfjörð Bjarmason
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).