-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* stdlib/strfmon_l.c (__vstrfmon_l): Fix handling of ! modifier. * localedata/Makefile: Add rules to build and run tst-strfmon1. * localedata/tst-strfmon1.c: New file.
- Loading branch information
Ulrich Drepper
committed
Apr 26, 2006
1 parent
388df58
commit c61a9cf
Showing
6 changed files
with
76 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters