mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 22:30:07 +00:00
02d8b5ab1c
According to CLDR 35.1 and the bug report the correct monetary format for negative amounts should be "EUR -1 234,56" while previously it was "EUR 1 234,56-". This patch does not change the thousands (grouping) separator. [BZ #24614] * localedata/Makefile (LOCALES): Add nl_NL.UTF-8. * localedata/locales/nl_NL (n_sep_by_space): Set to 2 (a space between the currency symbol and the minus sign). (n_sign_posn): Set to 4 (the minus sign after the currency symbol). * localedata/tst-strfmon1.c (tests): Add test data for nl_NL.UTF-8.
44 lines
1003 B
C
44 lines
1003 B
C
#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|" },
|
|
{ "nl_NL.UTF-8", "|\u20ac -12,34|-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"
|