about summary refs log tree commit diff
path: root/localedata/tst-strfmon1.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2004-12-22 20:10:10 +0000
committerUlrich Drepper <drepper@redhat.com>2004-12-22 20:10:10 +0000
commita334319f6530564d22e775935d9c91663623a1b4 (patch)
treeb5877475619e4c938e98757d518bb1e9cbead751 /localedata/tst-strfmon1.c
parent0ecb606cb6cf65de1d9fc8a919bceb4be476c602 (diff)
downloadglibc-a334319f6530564d22e775935d9c91663623a1b4.tar.gz
glibc-a334319f6530564d22e775935d9c91663623a1b4.tar.xz
glibc-a334319f6530564d22e775935d9c91663623a1b4.zip
(CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
Diffstat (limited to 'localedata/tst-strfmon1.c')
-rw-r--r--localedata/tst-strfmon1.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/localedata/tst-strfmon1.c b/localedata/tst-strfmon1.c
deleted file mode 100644
index e30aa1b204..0000000000
--- a/localedata/tst-strfmon1.c
+++ /dev/null
@@ -1,42 +0,0 @@
-#include <monetary.h>
-#include <locale.h>
-#include <stdio.h>
-#include <string.h>
-
-static const struct
-{
-  const char *locale;
-  const char *expected;
-} tests[] =
-  {
-    { "de_DE.ISO-8859-1", "|-12,34 EUR|-12,34|" },
-    { "da_DK.ISO-8859-1", "|kr -12,34|-12,34|" },
-    { "zh_TW.EUC-TW", "|-NT$12.34|-12.34|" },
-    { "sv_SE.ISO-8859-1", "|-12,34 kr|-12,34|" }
-  };
-#define ntests (sizeof (tests) / sizeof (tests[0]))
-
-
-static int
-do_test (void)
-{
-  int res = 0;
-  for (int i = 0; i < ntests; ++i)
-    {
-      char buf[500];
-      if (setlocale (LC_ALL, tests[i].locale) == NULL)
-	{
-	  printf ("failed to set locale %s\n", tests[i].locale);
-	  res = 1;
-	  continue;
-	}
-      strfmon (buf, sizeof (buf), "|%n|%!n|", -12.34, -12.34);
-      int fail = strcmp (buf, tests[i].expected) != 0;
-      printf ("%s%s\n", buf, fail ? " *** FAIL ***" : "");
-      res |= fail;
-    }
-  return res;
-}
-
-#define TEST_FUNCTION do_test ()
-#include "../test-skeleton.c"