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_iswctype.c | 53 ----------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 test/locale-mbwc/tst_iswctype.c (limited to 'test/locale-mbwc/tst_iswctype.c') diff --git a/test/locale-mbwc/tst_iswctype.c b/test/locale-mbwc/tst_iswctype.c deleted file mode 100644 index 3e79e092d..000000000 --- a/test/locale-mbwc/tst_iswctype.c +++ /dev/null @@ -1,53 +0,0 @@ -/* - ISWCTYPE: int iswctype (wint_t wc, wctype_t desc); -*/ - -#define TST_FUNCTION iswctype - -#include "tsp_common.c" -#include "dat_iswctype.c" - - -int -tst_iswctype (FILE *fp, int debug_flg) -{ - TST_DECL_VARS (int); - wint_t wc; - const char *ts; - - TST_DO_TEST (iswctype) - { - TST_HEAD_LOCALE (iswctype, S_ISWCTYPE); - TST_DO_REC (iswctype) - { - TST_GET_ERRET (iswctype); - wc = TST_INPUT (iswctype).wc; - ts = TST_INPUT (iswctype).ts; - ret = iswctype (wc, wctype (ts)); - TST_SAVE_ERRNO; - if (debug_flg) - { - fprintf (stdout, "iswctype() [ %s : %d ] ret = %d\n", - locale, rec+1, ret); - } - - TST_IF_RETURN (S_ISWCTYPE) - { - if (ret != 0) - { - result (fp, C_SUCCESS, S_ISWCTYPE, locale, rec+1, - seq_num+1, 3, MS_PASSED); - } - else - { - err_count++; - result (fp, C_FAILURE, S_ISWCTYPE, locale, rec+1, - seq_num+1, 3, - "the function returned 0, but should be non-zero"); - } - } - } - } - - return err_count; -} -- cgit v1.2.3