about summary refs log tree commit diff
path: root/localedata/tests-mbwc/dat_wcstombs.c
diff options
context:
space:
mode:
Diffstat (limited to 'localedata/tests-mbwc/dat_wcstombs.c')
-rw-r--r--localedata/tests-mbwc/dat_wcstombs.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/localedata/tests-mbwc/dat_wcstombs.c b/localedata/tests-mbwc/dat_wcstombs.c
index a6dd0ec662..ad9f44fec3 100644
--- a/localedata/tests-mbwc/dat_wcstombs.c
+++ b/localedata/tests-mbwc/dat_wcstombs.c
@@ -25,26 +25,26 @@ TST_WCSTOMBS tst_wcstombs_loc [] = {
       },
       /* #02 : Only one chars should be stored in s. No null termination.  */
       { /*input.*/ { 1,1,	       { 0x00C4,0x00D6,0x00DC,0x0000 },	1 },
-	/*expect*/ { 0,1,1,	 "Ä"					  },
+	/*expect*/ { 0,1,1,	 "\xc4"					  },
       },
       /* #03 : Only two chars should be stored in s. No null termination.  */
       { /*input.*/ { 1,1,	       { 0x00C4,0x00D6,0x00DC,0x0000 },	2 },
-	/*expect*/ { 0,1,2,	 "ÄÖ"					  },
+	/*expect*/ { 0,1,2,	 "\xc4\xd6"				  },
       },
       /* #04 : Only three chars should be stored in s. No null
 	       termination.  */
       { /*input.*/ { 1,1,	       { 0x00C4,0x00D6,0x00DC,0x0000 },	3 },
-	/*expect*/ { 0,1,3,	 "ÄÖÜ"					  },
+	/*expect*/ { 0,1,3,	 "\xc4\xd6\xdc"				  },
       },
       /* #05 : Only three chars should be stored in s with a null
 	       termination.  */
       { /*input.*/ { 1,1,	       { 0x00C4,0x00D6,0x00DC,0x0000 },	4 },
-	/*expect*/ { 0,1,3,	 "ÄÖÜ"					  },
+	/*expect*/ { 0,1,3,	 "\xc4\xd6\xdc"				  },
       },
       /* #06 : Only three chars should be stored in s with a null
 	       termination.  */
       { /*input.*/ { 1,1,	       { 0x00C4,0x00D6,0x00DC,0x0000 },	5 },
-	/*expect*/ { 0,1,3,	 "ÄÖÜ"					  },
+	/*expect*/ { 0,1,3,	 "\xc4\xd6\xdc"				  },
       },
       /* #07 : Invalid mb sequence. No chars should be stored in s. */
       { /*input.*/ { 1,1,	       { 0x0201,0x0221,0x0000,0x0000 },	2 },