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-mbwc/tst_strfmon.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-mbwc/tst_strfmon.c')
-rw-r--r-- | test/locale-mbwc/tst_strfmon.c | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/test/locale-mbwc/tst_strfmon.c b/test/locale-mbwc/tst_strfmon.c deleted file mode 100644 index 88e93167d..000000000 --- a/test/locale-mbwc/tst_strfmon.c +++ /dev/null @@ -1,74 +0,0 @@ -/* - STRFMON: size_t strfmon (char *buf, size_t nbyte, const char *fmt, ...) -*/ - -#define TST_FUNCTION strfmon - -#include "tsp_common.c" -#include "dat_strfmon.c" -#include <monetary.h> - -int -tst_strfmon (FILE * fp, int debug_flg) -{ - TST_DECL_VARS (size_t); - char buf[MONSIZE], *mon; - size_t nbt; - char *fmt; - double val; - - TST_DO_TEST (strfmon) - { - TST_HEAD_LOCALE (strfmon, S_STRFMON); - TST_DO_REC (strfmon) - { - TST_GET_ERRET (strfmon); - nbt = TST_INPUT (strfmon).nbytes; - fmt = TST_INPUT (strfmon).fmt; - val = TST_INPUT (strfmon).val; - memset (buf, 0, MONSIZE); - if (nbt > MONSIZE) - { - err_count++; - Result (C_FAILURE, S_STRFMON, CASE_3, "buffer too small in test"); - continue; - } - - TST_CLEAR_ERRNO; - ret = strfmon (buf, nbt, fmt, val, val, val); - TST_SAVE_ERRNO; - - if (debug_flg) /* seems fprintf doesn't update the errno */ - { - fprintf (stdout, "strfmon() [ %s : %d ]\n", locale, rec + 1); - fprintf (stdout, " : err = %d | %s\n", errno_save, - strerror (errno)); - fprintf (stdout, " : ret = %zd; \t fmt = |%s|\n", ret, fmt); - fprintf (stdout, " : buf = |%s|\n\n", buf); - } - - TST_IF_RETURN (S_STRFMON) - { - }; - if (errno != 0 || ret == -1) - { - continue; - } - - mon = TST_EXPECT (strfmon).mon; - - if (!strcmp (buf, mon)) - { - Result (C_SUCCESS, S_STRFMON, CASE_3, MS_PASSED); - } - else - { - err_count++; - Result (C_FAILURE, S_STRFMON, CASE_3, "the formatted string is " - "different from an expected result"); - } - } - } - - return err_count; -} |