1 These three tests don't make sense with git-gettext and
4 diff --git a/t/t0200-gettext-basic.sh b/t/t0200-gettext-basic.sh
5 index 8853d8af..974dd016 100755
6 --- a/t/t0200-gettext-basic.sh
7 +++ b/t/t0200-gettext-basic.sh
8 @@ -41,7 +41,7 @@ test_expect_success GETTEXT 'sanity: Icelandic locale was compiled' '
10 # TODO: When we have more locales, generalize this to test them
11 # all. Maybe we'll need a dir->locale map for that.
12 -test_expect_success GETTEXT_LOCALE 'sanity: gettext("") metadata is OK' '
13 +test_expect_failure GETTEXT_LOCALE 'sanity: gettext("") metadata is OK' '
14 # Return value may be non-zero
15 LANGUAGE=is LC_ALL="$is_IS_locale" gettext "" >zero-expect &&
16 grep "Project-Id-Version: Git" zero-expect &&
17 @@ -100,7 +100,7 @@ test_expect_success GETTEXT_LOCALE 'xgettext: Perl extraction with %s' '
18 test_cmp expect actual
21 -test_expect_success GETTEXT_LOCALE 'sanity: Some gettext("") data for real locale' '
22 +test_expect_failure GETTEXT_LOCALE 'sanity: Some gettext("") data for real locale' '
23 LANGUAGE=is LC_ALL="$is_IS_locale" gettext "" >real-locale &&
26 diff --git a/t/t0201-gettext-fallbacks.sh b/t/t0201-gettext-fallbacks.sh
27 index 5d80a985..5124ff6d 100755
28 --- a/t/t0201-gettext-fallbacks.sh
29 +++ b/t/t0201-gettext-fallbacks.sh
30 @@ -18,7 +18,7 @@ test_expect_success 'sanity: $GIT_INTERNAL_GETTEXT_TEST_FALLBACKS is set' '
31 test -n "$GIT_INTERNAL_GETTEXT_TEST_FALLBACKS"
34 -test_expect_success C_LOCALE_OUTPUT 'sanity: $GIT_INTERNAL_GETTEXT_SH_SCHEME" is fallthrough' '
35 +test_expect_failure C_LOCALE_OUTPUT 'sanity: $GIT_INTERNAL_GETTEXT_SH_SCHEME" is fallthrough' '
36 echo fallthrough >expect &&
37 echo $GIT_INTERNAL_GETTEXT_SH_SCHEME >actual &&
38 test_cmp expect actual