summaryrefslogtreecommitdiff
path: root/test/locale-mbwc/dat_towupper.c
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-28 20:29:21 +0200
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-10-28 20:31:55 +0200
commit99ef2719fb3d703fe38c4113cd7f5adec516dd3a (patch)
tree2c1f77cb41b60ccbf8faa77a3640491a3546b546 /test/locale-mbwc/dat_towupper.c
parent543308f6c46cf2edf8a524bc9c631e472570fe72 (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/dat_towupper.c')
-rw-r--r--test/locale-mbwc/dat_towupper.c47
1 files changed, 0 insertions, 47 deletions
diff --git a/test/locale-mbwc/dat_towupper.c b/test/locale-mbwc/dat_towupper.c
deleted file mode 100644
index 704ad44a6..000000000
--- a/test/locale-mbwc/dat_towupper.c
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * TEST SUITE FOR MB/WC FUNCTIONS IN C LIBRARY
- *
- * FILE: dat_towupper.c
- *
- * ISW*: int towupper (wint_t wc);
- */
-
-
-#include "dat_tow-funcs.h"
-
-
-TST_TOW_LOC (UPPER, upper) = {
-
- { TST_TOW_REC (de, upper)
- {
- { { WEOF }, { 0, 1, (wint_t)-1 } },
- { { 0x0080 }, { 0, 1, 0x0080 } },
- { { 0x00EC }, { 0, 1, 0x00CC } },
- { { 0x00CC }, { 0, 1, 0x00CC } },
- { .is_last = 1 } /* Last element. */
- }
- },
- { TST_TOW_REC (enUS, upper)
- {
- { { WEOF }, { 0, 1, (wint_t)-1 } },
- { { 0x0080 }, { 0, 1, 0x0080 } },
- { { 0x0041 }, { 0, 1, 0x0041 } },
- { { 0x0061 }, { 0, 1, 0x0041 } },
- { .is_last = 1 } /* Last element. */
- }
- },
-#if 0
- { TST_TOW_REC (eucJP, upper)
-#else
- { TST_TOW_REC (ja_UTF8, upper)
-#endif
- {
- { { WEOF }, { 0, 1, (wint_t)-1 } },
- { { 0x007F }, { 0, 1, 0x007F } },
- { { 0xFF41 }, { 0, 1, 0xFF21 } },
- { { 0xFF21 }, { 0, 1, 0xFF21 } },
- { .is_last = 1 } /* Last element. */
- }
- },
- { TST_TOW_REC (end, upper) }
-};