1 | #include <monetary.h> |
---|---|
2 | #include <locale.h> |
3 | #include <stdio.h> |
4 | #include <string.h> |
5 | |
6 | static const struct |
7 | { |
8 | const char *locale; |
9 | const char *expected; |
10 | } tests[] = |
11 | { |
12 | { "de_DE.ISO-8859-1", "|-12,34 EUR|-12,34|"}, |
13 | { "da_DK.ISO-8859-1", "|kr. -12,34|-12,34|"}, |
14 | { "zh_TW.EUC-TW", "|-NT$12.34|-12.34|"}, |
15 | { "sv_SE.ISO-8859-1", "|-12,34 kr|-12,34|"}, |
16 | { "nl_NL.UTF-8", "|\u20ac -12,34|-12,34|"}, |
17 | }; |
18 | #define ntests (sizeof (tests) / sizeof (tests[0])) |
19 | |
20 | |
21 | static int |
22 | do_test (void) |
23 | { |
24 | int res = 0; |
25 | for (int i = 0; i < ntests; ++i) |
26 | { |
27 | char buf[500]; |
28 | if (setlocale (LC_ALL, tests[i].locale) == NULL) |
29 | { |
30 | printf (format: "failed to set locale %s\n", tests[i].locale); |
31 | res = 1; |
32 | continue; |
33 | } |
34 | strfmon (s: buf, maxsize: sizeof (buf), format: "|%n|%!n|", -12.34, -12.34); |
35 | int fail = strcmp (buf, tests[i].expected) != 0; |
36 | printf (format: "%s%s\n", buf, fail ? " *** FAIL ***": ""); |
37 | res |= fail; |
38 | } |
39 | return res; |
40 | } |
41 | |
42 | #define TEST_FUNCTION do_test () |
43 | #include "../test-skeleton.c" |
44 |