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_wcstod.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_wcstod.c')
-rw-r--r-- | test/locale-mbwc/tst_wcstod.c | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/test/locale-mbwc/tst_wcstod.c b/test/locale-mbwc/tst_wcstod.c deleted file mode 100644 index 1648d3539..000000000 --- a/test/locale-mbwc/tst_wcstod.c +++ /dev/null @@ -1,69 +0,0 @@ -/* - WCSTOD: double wcstod (wchar_t *np, const wchar_t **endp); -*/ - -#define TST_FUNCTION wcstod - -#include "tsp_common.c" -#include "dat_wcstod.c" - -int -tst_wcstod (FILE * fp, int debug_flg) -{ - TST_DECL_VARS (double); - wchar_t *np, *endp, fwc; - double val; - - TST_DO_TEST (wcstod) - { - TST_HEAD_LOCALE (wcstod, S_WCSTOD); - TST_DO_REC (wcstod) - { - TST_GET_ERRET (wcstod); - np = TST_INPUT (wcstod).np; - - TST_CLEAR_ERRNO; - ret = wcstod (np, &endp); - TST_SAVE_ERRNO; - - if (debug_flg) - { - fprintf (stdout, "wcstod() [ %s : %d ] ret = %f\n", locale, - rec + 1, ret); - fprintf (stdout, " *endp = 0x%lx\n", - (unsigned long int) *endp); - } - - TST_IF_RETURN (S_WCSTOD) - { - if (ret != 0) - { - val = ret - TST_EXPECT (wcstod).val; - if (TST_ABS (val) < TST_DBL_EPS) - { - Result (C_SUCCESS, S_WCSTOD, CASE_3, MS_PASSED); - } - else - { - err_count++; - Result (C_FAILURE, S_WCSTOD, CASE_3, "return value is wrong"); - } - } - } - - fwc = TST_EXPECT (wcstod).fwc; - - if (fwc == *endp) - { - Result (C_SUCCESS, S_WCSTOD, CASE_4, MS_PASSED); - } - else - { - err_count++; - Result (C_FAILURE, S_WCSTOD, CASE_4, "a final wc is wrong."); - } - } - } - - return err_count; -} |