From 99ef2719fb3d703fe38c4113cd7f5adec516dd3a Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Fri, 28 Oct 2016 20:29:21 +0200 Subject: 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. --- test/locale-mbwc/tst_wcschr.c | 70 ------------------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 test/locale-mbwc/tst_wcschr.c (limited to 'test/locale-mbwc/tst_wcschr.c') diff --git a/test/locale-mbwc/tst_wcschr.c b/test/locale-mbwc/tst_wcschr.c deleted file mode 100644 index b57a05a8f..000000000 --- a/test/locale-mbwc/tst_wcschr.c +++ /dev/null @@ -1,70 +0,0 @@ -/* - WCSCHR: wchar_t *wcschr (wchar_t *ws, wchar_t wc); -*/ - -#define TST_FUNCTION wcschr - -#include "tsp_common.c" -#include "dat_wcschr.c" - -int -tst_wcschr (FILE * fp, int debug_flg) -{ - TST_DECL_VARS (wchar_t *); - wchar_t *ws, wc; - - TST_DO_TEST (wcschr) - { - TST_HEAD_LOCALE (wcschr, S_WCSCHR); - TST_DO_REC (wcschr) - { - TST_GET_ERRET (wcschr); - ws = TST_INPUT (wcschr).ws; /* external value: size WCSSIZE */ - wc = TST_INPUT (wcschr).wc; - ret = wcschr (ws, wc); - - if (debug_flg) - { - if (ret) - { - fprintf (stderr, "wcschr: ret = 0x%lx\n", - (unsigned long int) *ret); - } - else - { - fprintf (stderr, "wcschr: ret = NULL pointer\n"); - } - } - - TST_IF_RETURN (S_WCSCHR) - { - if (ret == NULL) - { - if (debug_flg) - { - fprintf (stderr, "*** Warning *** tst_wcschr: " - "set ret_flg=1 to check NULL return value\n"); - } - - warn_count++; - Result (C_INVALID, S_WCSCHR, CASE_3, "(check the test data) " - "set ret_flg=1 to check NULL return value"); - continue; - } - - if (*ret == wc) - { - Result (C_SUCCESS, S_WCSCHR, CASE_3, MS_PASSED); - } - else - { - err_count++; - Result (C_FAILURE, S_WCSCHR, CASE_3, - "the returned address of the string seems to be wrong"); - } - } - } - } - - return err_count; -} -- cgit v1.2.3