aboutsummaryrefslogtreecommitdiff
path: root/localedata/tests-mbwc/dat_wcsxfrm.c
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2000-06-27 15:53:49 +0000
committerAndreas Jaeger <aj@suse.de>2000-06-27 15:53:49 +0000
commit22827fb10b7963e873025416a601c185ee6dade5 (patch)
tree430d62380f6b38d289d402fb91e6617cc0717875 /localedata/tests-mbwc/dat_wcsxfrm.c
parentcb6815da362a320f2bc9a2d0e0bd95ca354ff380 (diff)
downloadglibc-22827fb10b7963e873025416a601c185ee6dade5.tar
glibc-22827fb10b7963e873025416a601c185ee6dade5.tar.gz
glibc-22827fb10b7963e873025416a601c185ee6dade5.tar.bz2
glibc-22827fb10b7963e873025416a601c185ee6dade5.zip
Add new files to tests and add environment for them.
Diffstat (limited to 'localedata/tests-mbwc/dat_wcsxfrm.c')
-rw-r--r--localedata/tests-mbwc/dat_wcsxfrm.c95
1 files changed, 95 insertions, 0 deletions
diff --git a/localedata/tests-mbwc/dat_wcsxfrm.c b/localedata/tests-mbwc/dat_wcsxfrm.c
new file mode 100644
index 0000000000..8d52efcf90
--- /dev/null
+++ b/localedata/tests-mbwc/dat_wcsxfrm.c
@@ -0,0 +1,95 @@
+/*
+ * TEST SUITE FOR MB/WC FUNCTIONS IN CLIBRARY
+ *
+ * FILE: dat_wcsxfrm.c
+ *
+ * WCSXFRM: size_t wcsxfrm (char *s1, const char s2, size_t n);
+ */
+
+/*
+ * NOTE:
+ *
+ * Return value and errno value are checked only for 2nd string:
+ * org2[]; n1 and n2 don't mean bytes to be translated.
+ * It means a buffer size including a null character.
+ * Results of this test depens on results of wcscoll().
+ * If you got errors, check both test results.
+ */
+
+
+TST_WCSXFRM tst_wcsxfrm_loc [] = {
+
+ {
+ { Twcsxfrm, TST_LOC_de },
+ {
+ { /*inp*/ { { 0x00C1,0x0000 }, { 0x00C1,0x0000 }, 7, 7 }, /* #01 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+ { /*inp*/ { { 0x0042,0x0000 }, { 0x0061,0x0000 }, 7, 7 }, /* #02 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+ { /*inp*/ { { 0x0061,0x0000 }, { 0x0042,0x0000 }, 7, 7 }, /* #03 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+ { /*inp*/ { { 0x00E4,0x0000 }, { 0x00DC,0x0000 }, 7, 7 }, /* #04 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+ { /*inp*/ { { 0x00DC,0x0000 }, { 0x00E4,0x0000 }, 7, 7 }, /* #05 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+ { is_last: 1 }
+ }
+ },
+ {
+ { Twcsxfrm, TST_LOC_enUS },
+ {
+ { /*inp*/ { { 0x0041,0x0000 }, { 0x0041,0x0000 }, 7, 7 }, /* #01 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+ { /*inp*/ { { 0x0042,0x0000 }, { 0x0061,0x0000 }, 7, 7 }, /* #02 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+ { /*inp*/ { { 0x0061,0x0000 }, { 0x0042,0x0000 }, 7, 7 }, /* #03 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+ { /*inp*/ { { 0x0000,0x0000 }, { 0x0000,0x0000 }, 7, 7 }, /* #04 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+
+ { /* <WAIVER> x 2 */
+ /*inp*/ { { 0x3061,0x0000 }, { 0xFF42,0x0000 }, 7, 7 }, /* #05 */
+ /* <WAIVER> */
+ /*exp*/ { 1,EINVAL, 1,(size_t)-1, },
+ },
+ { is_last: 1 }
+ }
+ },
+ {
+ { Twcsxfrm, TST_LOC_eucJP }, /* need more test data ! */
+ {
+ { /*inp*/ { { 0x3041,0x0000 }, { 0x3041,0x0000 }, 7, 7 }, /* #01 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+ { /*inp*/ { { 0x0042,0x0000 }, { 0x0061,0x0000 }, 7, 7 }, /* #02 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+ { /*inp*/ { { 0x0061,0x0000 }, { 0x0042,0x0000 }, 7, 7 }, /* #03 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+ { /*inp*/ { { 0x30A2,0x0000 }, { 0xFF71,0x0000 }, 7, 7 }, /* #04 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+ { /*inp*/ { { 0xFF71,0x0000 }, { 0x30A2,0x0000 }, 7, 7 }, /* #05 */
+ /*exp*/ { 1,0, 0,0, },
+ },
+ /* <WAIVER> x 2 */
+ { /*inp*/ { { 0x008E,0x0000 }, { 0x008F,0x0000 }, 7, 7 }, /* #06 */
+ /*exp*/ { 1,EINVAL, 1,(size_t)-1, },
+ },
+ { is_last: 1 }
+ }
+ },
+ {
+ { Twcsxfrm, TST_LOC_end }
+ }
+};