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_wcscat.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_wcscat.c')
-rw-r--r-- | test/locale-mbwc/tst_wcscat.c | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/test/locale-mbwc/tst_wcscat.c b/test/locale-mbwc/tst_wcscat.c deleted file mode 100644 index 3dc98091c..000000000 --- a/test/locale-mbwc/tst_wcscat.c +++ /dev/null @@ -1,78 +0,0 @@ -/* - WCSCAT: wchar_t *wcscat (wchar_t *ws1, const wchar_t *ws2); -*/ - -#define TST_FUNCTION wcscat - -#include "tsp_common.c" -#include "dat_wcscat.c" - -int -tst_wcscat (FILE * fp, int debug_flg) -{ - TST_DECL_VARS (wchar_t *); - wchar_t *ws1, *ws2, *ws_ex; - int i, err; - - TST_DO_TEST (wcscat) - { - TST_HEAD_LOCALE (wcscat, S_WCSCAT); - TST_DO_REC (wcscat) - { - TST_GET_ERRET (wcscat); - ws1 = TST_INPUT (wcscat).ws1; /* external value: size WCSSIZE */ - ws2 = TST_INPUT (wcscat).ws2; - - TST_CLEAR_ERRNO; - ret = wcscat (ws1, ws2); - TST_SAVE_ERRNO; - - TST_IF_RETURN (S_WCSCAT) - { - if (ret == ws1) - { - Result (C_SUCCESS, S_WCSCAT, CASE_3, MS_PASSED); - } - else - { - err_count++; - Result (C_FAILURE, S_WCSCAT, CASE_3, - "the return address may not be correct"); - } - } - - /* function specific test cases here */ - - if (ret == ws1) - { - ws_ex = TST_EXPECT (wcscat).ws; - for (err = 0, i = 0; - (ws1[i] != 0L || ws_ex[i] != 0L) && i < WCSSIZE; i++) - { - if (debug_flg) - { - fprintf (stdout, "tst_wcscat() : ws1[%d] = 0x%lx\n", i, - (unsigned long int) ws1[i]); - } - - if (ws1[i] != ws_ex[i]) - { - err++; - err_count++; - Result (C_FAILURE, S_WCSCAT, CASE_4, - "concatinated string is different from an " - "expected string"); - break; - } - } - - if (!err) - { - Result (C_SUCCESS, S_WCSCAT, CASE_4, MS_PASSED); - } - } - } - } - - return err_count; -} |