]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Disable tests that need more-recent infrastructure
authorStan Shebs <stanshebs@google.com>
Fri, 23 Jul 2021 17:06:02 +0000 (10:06 -0700)
committerFangrui Song <i@maskray.me>
Sat, 28 Aug 2021 00:26:08 +0000 (17:26 -0700)
iconv/Makefile
intl/tst-codeset.c

index 750d6cc7f87699b6c8d068f5d42f9c9dceb9d790..c8b983621fc29db7524f984d8d1f6d3b4dca9cfe 100644 (file)
@@ -44,7 +44,7 @@ CFLAGS-linereader.c += -DNO_TRANSLITERATION
 CFLAGS-simple-hash.c += -I../locale
 
 tests  = tst-iconv1 tst-iconv2 tst-iconv3 tst-iconv4 tst-iconv5 tst-iconv6 \
-         tst-iconv8 tst-iconv-mt tst-iconv-opt
+         tst-iconv8 # tst-iconv-opt needs work to add back
 
 others         = iconv_prog iconvconfig
 install-others-programs        = $(inst_bindir)/iconv
index 52e4aaa6ffd3afdb069cd0334e965fa8c799b5bc..6a640bcad03d927b0e7b045b7fbf6669e2d4d9a6 100644 (file)
@@ -33,6 +33,7 @@ do_test (void)
   textdomain ("codeset");
   bindtextdomain ("codeset", OBJPFX "domaindir");
 
+#if 0 /* needs updated test framework */
   /* Here we expect output in ISO-8859-1.  */
   TEST_COMPARE_STRING (gettext ("cheese"), "K\344se");
 
@@ -47,6 +48,7 @@ do_test (void)
   /* Transliteration also works by default even if not set.  */
   bind_textdomain_codeset ("codeset", "ASCII");
   TEST_COMPARE_STRING (gettext ("cheese"), "Kaese");
+#endif
 
   return 0;
 }