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_mbrtowc.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_mbrtowc.c')
-rw-r--r-- | test/locale-mbwc/tst_mbrtowc.c | 96 |
1 files changed, 0 insertions, 96 deletions
diff --git a/test/locale-mbwc/tst_mbrtowc.c b/test/locale-mbwc/tst_mbrtowc.c deleted file mode 100644 index b6247ce8c..000000000 --- a/test/locale-mbwc/tst_mbrtowc.c +++ /dev/null @@ -1,96 +0,0 @@ -/* - MBRTOWC: size_t mbrtowc (wchar_t *pwc, const char *s, size_t n, - mbstate_t *ps) -*/ - -#define TST_FUNCTION mbrtowc - -#include "tsp_common.c" -#include "dat_mbrtowc.c" - - -int -tst_mbrtowc (FILE * fp, int debug_flg) -{ - TST_DECL_VARS (size_t); - char w_flg, s_flg; - char *s; - size_t n; - char t_flg; - static mbstate_t t = { 0 }; - mbstate_t *pt; - wchar_t wc, *pwc, wc_ex; - - TST_DO_TEST (mbrtowc) - { - TST_HEAD_LOCALE (mbrtowc, S_MBRTOWC); - TST_DO_REC (mbrtowc) - { - if (mbrtowc (NULL, "", 0, &t) != 0) - { - err_count++; - Result (C_FAILURE, S_MBRTOWC, CASE_3, - "Initialization failed - skipping this test case."); - continue; - } - - TST_DO_SEQ (MBRTOWC_SEQNUM) - { - TST_GET_ERRET_SEQ (mbrtowc); - w_flg = TST_INPUT_SEQ (mbrtowc).w_flg; - s_flg = TST_INPUT_SEQ (mbrtowc).s_flg; - s = TST_INPUT_SEQ (mbrtowc).s; - n = TST_INPUT_SEQ (mbrtowc).n; - t_flg = TST_INPUT_SEQ (mbrtowc).t_flg; - pwc = (w_flg == 0) ? NULL : &wc; - - if (s_flg == 0) - { - s = NULL; - } - - if (n == USE_MBCURMAX) - { - n = MB_CUR_MAX; - } - - pt = (t_flg == 0) ? NULL : &t; - TST_CLEAR_ERRNO; - ret = mbrtowc (pwc, s, n, pt); - TST_SAVE_ERRNO; - - if (debug_flg) - { - fprintf (stdout, "mbrtowc() [ %s : %d : %d ] ret = %zd\n", - locale, rec + 1, seq_num + 1, ret); - fprintf (stdout, " errno = %hd\n", - errno_save); - } - - TST_IF_RETURN (S_MBRTOWC) - { - }; - - if (pwc == NULL || s == NULL || ret == (size_t) - 1 - || ret == (size_t) - 2) - { - continue; - } - - wc_ex = TST_EXPECT_SEQ (mbrtowc).wc; - if (wc_ex == wc) - { - Result (C_SUCCESS, S_MBRTOWC, CASE_4, MS_PASSED); - } - else - { - err_count++; - Result (C_FAILURE, S_MBRTOWC, CASE_4, - "converted wc is different from an expected wc"); - } - } - } - } - - return err_count; -} |