mirror of
https://github.com/git/git.git
synced 2024-10-31 22:37:54 +01:00
1cdc62f6f1
We check that a shell variable is non-empty, and then we check that it's equal to a particular value. Just checking the latter covers both cases. I suspect the original was trying to give better output when the test fails, but using "-x" covers that these days. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
32 lines
919 B
Bash
Executable file
32 lines
919 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2010 Ævar Arnfjörð Bjarmason
|
|
#
|
|
|
|
test_description='Gettext Shell poison'
|
|
|
|
. ./lib-gettext.sh
|
|
|
|
test_expect_success GETTEXT_POISON 'sanity: $GIT_INTERNAL_GETTEXT_SH_SCHEME" is poison' '
|
|
test "$GIT_INTERNAL_GETTEXT_SH_SCHEME" = "poison"
|
|
'
|
|
|
|
test_expect_success GETTEXT_POISON '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 GETTEXT_POISON '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_done
|