From 6c8fc0c61854825b2d967aac4b0531f5f45dfbcd Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Tue, 26 Jan 2016 17:05:20 +0100 Subject: [PATCH] fixup! t0200: disable more tests with MSys2 that rely on locale.exe When contributing the minimal set of patches to make the test suite pass on Windows, it turned out that this patch is not at all needed. Signed-off-by: Johannes Schindelin --- t/t0200-gettext-basic.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/t0200-gettext-basic.sh b/t/t0200-gettext-basic.sh index 6ab50b4818..8853d8afb9 100755 --- a/t/t0200-gettext-basic.sh +++ b/t/t0200-gettext-basic.sh @@ -58,7 +58,7 @@ test_expect_success GETTEXT_LOCALE 'sanity: gettext(unknown) is passed through' ' # xgettext from C -test_expect_success GETTEXT_LOCALE,!MINGW 'xgettext: C extraction of _() and N_() strings' ' +test_expect_success GETTEXT_LOCALE 'xgettext: C extraction of _() and N_() strings' ' printf "TILRAUN: C tilraunastrengur" >expect && printf "\n" >>expect && printf "Sjá '\''git help SKIPUN'\'' til að sjá hjálp fyrir tiltekna skipun." >>expect && @@ -81,7 +81,7 @@ test_expect_success GETTEXT_LOCALE 'xgettext: Shell extraction' ' test_cmp expect actual ' -test_expect_success GETTEXT_LOCALE,!MINGW 'xgettext: Shell extraction with $variable' ' +test_expect_success GETTEXT_LOCALE 'xgettext: Shell extraction with $variable' ' printf "TILRAUN: Skeljartilraunastrengur með breytunni a var i able" >x-expect && LANGUAGE=is LC_ALL="$is_IS_locale" variable="a var i able" eval_gettext "TEST: A Shell test \$variable" >x-actual && test_cmp x-expect x-actual @@ -94,7 +94,7 @@ test_expect_success GETTEXT_LOCALE 'xgettext: Perl extraction' ' test_cmp expect actual ' -test_expect_success GETTEXT_LOCALE,!MINGW 'xgettext: Perl extraction with %s' ' +test_expect_success GETTEXT_LOCALE 'xgettext: Perl extraction with %s' ' printf "TILRAUN: Perl tilraunastrengur með breytunni %%s" >expect && LANGUAGE=is LC_ALL="$is_IS_locale" gettext "TEST: A Perl test variable %s" >actual && test_cmp expect actual