diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-10-28 20:29:21 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2016-10-28 20:31:55 +0200 |
commit | 99ef2719fb3d703fe38c4113cd7f5adec516dd3a (patch) | |
tree | 2c1f77cb41b60ccbf8faa77a3640491a3546b546 /test/locale/tst-strfmon1.c | |
parent | 543308f6c46cf2edf8a524bc9c631e472570fe72 (diff) |
test: remove test suite
The test suite is now a developed in a separate git repository.
See here:
http://cgit.uclibc-ng.org/cgi/cgit/uclibc-ng-test.git
The test suite should be just like every other software compiled
with the cross-toolchain. In the past strange problems where found
when the test suite got build in the toolchain creation step.
Diffstat (limited to 'test/locale/tst-strfmon1.c')
-rw-r--r-- | test/locale/tst-strfmon1.c | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/test/locale/tst-strfmon1.c b/test/locale/tst-strfmon1.c deleted file mode 100644 index e30aa1b20..000000000 --- a/test/locale/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" |