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_wcstombs.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_wcstombs.c')
-rw-r--r-- | test/locale-mbwc/tst_wcstombs.c | 115 |
1 files changed, 0 insertions, 115 deletions
diff --git a/test/locale-mbwc/tst_wcstombs.c b/test/locale-mbwc/tst_wcstombs.c deleted file mode 100644 index c0851a430..000000000 --- a/test/locale-mbwc/tst_wcstombs.c +++ /dev/null @@ -1,115 +0,0 @@ -/* - WCSTOMBS: size_t wcstombs (char *s, const wchar_t *ws, size_t n) -*/ - -#define TST_FUNCTION wcstombs - -#include "tsp_common.c" -#include "dat_wcstombs.c" - -#define MARK_VAL 0x01 - -int -tst_wcstombs (FILE * fp, int debug_flg) -{ - TST_DECL_VARS (size_t); - char s_flg, n; - wchar_t *ws; - char s[MBSSIZE], *s_in; - int err, i; - char *s_ex; - - TST_DO_TEST (wcstombs) - { - TST_HEAD_LOCALE (wcstombs, S_WCSTOMBS); - TST_DO_REC (wcstombs) - { - TST_GET_ERRET (wcstombs); - memset (s, MARK_VAL, MBSSIZE); - - s_flg = TST_INPUT (wcstombs).s_flg; - s_in = (s_flg == 1) ? s : (char *) NULL; - ws = TST_INPUT (wcstombs).ws; - n = TST_INPUT (wcstombs).n; - - TST_CLEAR_ERRNO; - ret = wcstombs (s_in, ws, n); - TST_SAVE_ERRNO; - - if (debug_flg) - { - fprintf (stdout, "wcstombs: ret = %zu\n", ret); - } - - TST_IF_RETURN (S_WCSTOMBS) - { - }; - - if (s_in != NULL && ret != (size_t) - 1) - { - /* No definition for s, when error occurs. */ - s_ex = TST_EXPECT (wcstombs).s; - - for (err = 0, i = 0; i <= ret && i < MBSSIZE; i++) - { - if (debug_flg) - { - fprintf (stdout, - " : s[%d] = 0x%hx <-> 0x%hx = s_ex[%d]\n", i, - s[i], s_ex[i], i); - } - - if (i == ret && ret == n) /* no null termination */ - { - if (s[i] == MARK_VAL) - { - Result (C_SUCCESS, S_WCSTOMBS, CASE_4, MS_PASSED); - } - else - { - err_count++; - Result (C_FAILURE, S_WCSTOMBS, CASE_4, - "should not be null terminated " - "(it may be a null char), but it is"); - } - - break; - } - - if (i == ret && ret < n) /* null termination */ - { - if (s[i] == 0) - { - Result (C_SUCCESS, S_WCSTOMBS, CASE_5, MS_PASSED); - } - else - { - err_count++; - Result (C_FAILURE, S_WCSTOMBS, CASE_5, - "should be null terminated, but it is not"); - } - - break; - } - - if (s[i] != s_ex[i]) - { - err++; - err_count++; - Result (C_FAILURE, S_WCSTOMBS, CASE_6, - "converted string is different from an " - "expected string"); - break; - } - } - - if (!err) - { - Result (C_SUCCESS, S_WCSTOMBS, CASE_6, MS_PASSED); - } - } - } - } - - return err_count; -} |