about summary refs log tree commit diff
path: root/localedata/tests-mbwc/dat_towlower.c
diff options
context:
space:
mode:
Diffstat (limited to 'localedata/tests-mbwc/dat_towlower.c')
-rw-r--r--localedata/tests-mbwc/dat_towlower.c43
1 files changed, 43 insertions, 0 deletions
diff --git a/localedata/tests-mbwc/dat_towlower.c b/localedata/tests-mbwc/dat_towlower.c
new file mode 100644
index 0000000000..c5fae1b670
--- /dev/null
+++ b/localedata/tests-mbwc/dat_towlower.c
@@ -0,0 +1,43 @@
+/*
+ *  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,0,  1, (wint_t)-1 }	},
+	{  { 0x0080 }, { 0,0,  1, 0x0080     }	},
+	{  { 0x00CC }, { 0,0,  1, 0x00EC     }	},
+	{  { 0x00EC }, { 0,0,  1, 0x00EC     }	},
+	{ is_last: 1 } /* Last element.	 */
+      }
+  },
+  {   TST_TOW_REC (enUS, lower)
+      {
+	{  { WEOF   }, { 0,0,  1, (wint_t)-1 }	},
+	{  { 0x007F }, { 0,0,  1, 0x007F     }	},
+	{  { 0x0041 }, { 0,0,  1, 0x0061     }	},
+	{  { 0x0061 }, { 0,0,  1, 0x0061     }	},
+	{ is_last: 1 } /* Last element.	 */
+      }
+  },
+  {   TST_TOW_REC (eucJP, lower)
+      {
+	{  { 0x007F }, { 0,0,  1, 0x007F     }	},
+	{  { 0x0080 }, { 0,0,  1, 0x0080     }	},
+	{  { 0xFF21 }, { 0,0,  1, 0xFF41     }	},
+	{  { 0xFF41 }, { 0,0,  1, 0xFF41     }	},
+	{ is_last: 1 } /* Last element.	 */
+      }
+  },
+  {   TST_TOW_REC (end, lower) }
+};