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_wctomb.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_wctomb.c')
-rw-r--r-- | test/locale-mbwc/tst_wctomb.c | 99 |
1 files changed, 0 insertions, 99 deletions
diff --git a/test/locale-mbwc/tst_wctomb.c b/test/locale-mbwc/tst_wctomb.c deleted file mode 100644 index aea89fed8..000000000 --- a/test/locale-mbwc/tst_wctomb.c +++ /dev/null @@ -1,99 +0,0 @@ -/* - WCTOMB: int wctomb (char *s, wchar_t wc) -*/ - -#define TST_FUNCTION wctomb - -#include "tsp_common.c" -#include "dat_wctomb.c" - -int -tst_wctomb (FILE * fp, int debug_flg) -{ - TST_DECL_VARS (int); - wchar_t wc; - char s[MBSSIZE], *s_in, *s_ex; - int err, i; - - TST_DO_TEST (wctomb) - { - TST_HEAD_LOCALE (wctomb, S_WCTOMB); - TST_DO_REC (wctomb) - { - TST_GET_ERRET (wctomb); - wc = TST_INPUT (wctomb).wc; - s_in = ((TST_INPUT (wctomb).s_flg) == 0) ? (char *) NULL : s; - ret = wctomb (s_in, wc); - - if (debug_flg) - { - fprintf (stdout, "wctomb() [ %s : %d ] ret = %d\n", locale, - rec + 1, ret); - } - - TST_IF_RETURN (S_WCTOMB) - { - if (s_in == NULL) /* state dependency */ - { - if (ret_exp == +1) /* state-dependent */ - { - if (ret != 0) - { - /* Non-zero means state-dependent encoding. */ - Result (C_SUCCESS, S_WCTOMB, CASE_3, MS_PASSED); - } - else - { - err_count++; - Result (C_FAILURE, S_WCTOMB, CASE_3, - "should be state-dependent encoding, " - "but a return value shows it is " - "state-independent"); - } - } - - if (ret_exp == 0) /* state-independent */ - { - if (ret == 0) - { - /* Non-zero means state-dependent encoding. */ - Result (C_SUCCESS, S_WCTOMB, CASE_3, MS_PASSED); - } - else - { - err_count++; - Result (C_FAILURE, S_WCTOMB, CASE_3, - "should be state-independent encoding, " - "but a return value shows it is state-dependent"); - } - } - } - } - - s_ex = TST_EXPECT (wctomb).s; - - if (s_in) - { - for (i = 0, err = 0; *(s_ex + i) != 0 && i < MBSSIZE; i++) - { - if (s_in[i] != s_ex[i]) - { - err++; - err_count++; - Result (C_FAILURE, S_WCTOMB, CASE_4, - "copied string is different from an" - " expected string"); - break; - } - } - - if (!err) - { - Result (C_SUCCESS, S_WCTOMB, CASE_4, MS_PASSED); - } - } - } - } - - return err_count; -} |