summaryrefslogtreecommitdiff
path: root/test/locale-mbwc/dat_towlower.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/locale-mbwc/dat_towlower.c')
-rw-r--r--test/locale-mbwc/dat_towlower.c47
1 files changed, 0 insertions, 47 deletions
diff --git a/test/locale-mbwc/dat_towlower.c b/test/locale-mbwc/dat_towlower.c
deleted file mode 100644
index b6dd275fd..000000000
--- a/test/locale-mbwc/dat_towlower.c
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * TEST SUITE FOR MB/WC FUNCTIONS IN C LIBRARY
- *
- * FILE: dat_towlower.c
- *
- * ISW*: int towlower (wint_t wc);
- */
-
-
-#include "dat_tow-funcs.h"
-
-
-TST_TOW_LOC (LOWER, lower) = {
-
- { TST_TOW_REC (de, lower)
- {
- { { WEOF }, { 0, 1, (wint_t)-1 } },
- { { 0x0080 }, { 0, 1, 0x0080 } },
- { { 0x00CC }, { 0, 1, 0x00EC } },
- { { 0x00EC }, { 0, 1, 0x00EC } },
- { .is_last = 1 } /* Last element. */
- }
- },
- { TST_TOW_REC (enUS, lower)
- {
- { { WEOF }, { 0, 1, (wint_t)-1 } },
- { { 0x007F }, { 0, 1, 0x007F } },
- { { 0x0041 }, { 0, 1, 0x0061 } },
- { { 0x0061 }, { 0, 1, 0x0061 } },
- { .is_last = 1 } /* Last element. */
- }
- },
-#if 0
- { TST_TOW_REC (eucJP, lower)
-#else
- { TST_TOW_REC (ja_UTF8, lower)
-#endif
- {
- { { 0x007F }, { 0, 1, 0x007F } },
- { { 0x0080 }, { 0, 1, 0x0080 } },
- { { 0xFF21 }, { 0, 1, 0xFF41 } },
- { { 0xFF41 }, { 0, 1, 0xFF41 } },
- { .is_last = 1 } /* Last element. */
- }
- },
- { TST_TOW_REC (end, lower) }
-};