summaryrefslogtreecommitdiff
path: root/localedata/tst-strfmon1.c
blob: 8292a6cad516ad1b2b150dea57bf90b3fe4d0d00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#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"