2005-09-25  Ulrich Drepper  <drepper@redhat.com>
	[BZ #714]
	* iconv/loop.c [!STORE_REST] (SINGLE): Correctly record number of
	left-over bytes and store them correctly.
	* iconvdata/tst-iconv6.c: New file.
	* iconvdata/Makefile (tests): Add tst-iconv6.
This commit is contained in:
Ulrich Drepper 2005-09-25 17:12:25 +00:00
parent d3f70d6eb0
commit 2cf8a390dd
5 changed files with 1923 additions and 5 deletions

View File

@ -1,3 +1,11 @@
2005-09-25 Ulrich Drepper <drepper@redhat.com>
[BZ #714]
* iconv/loop.c [!STORE_REST] (SINGLE): Correctly record number of
left-over bytes and store them correctly.
* iconvdata/tst-iconv6.c: New file.
* iconvdata/Makefile (tests): Add tst-iconv6.
2005-09-24 Roland McGrath <roland@redhat.com>
* sysdeps/unix/sysv/i386/signal.S: Removed, saved in ports repository.

View File

@ -1,5 +1,10 @@
2005-09-25 Ulrich Drepper <drepper@redhat.com>
* SUPPORTED (SUPPORTED-LOCALES): Add km_KH.
[BZ #826]
* locales/km_KH: New file.
* Makefile (LOCALES): Add zh_TW.EUC-TW.
2005-09-24 Ulrich Drepper <drepper@redhat.com>

View File

@ -222,6 +222,7 @@ kk_KZ.UTF-8/UTF-8 \
kk_KZ/PT154 \
kl_GL.UTF-8/UTF-8 \
kl_GL/ISO-8859-1 \
km_KH/UTF-8 \
kn_IN/UTF-8 \
ko_KR.EUC-KR/EUC-KR \
ko_KR.UTF-8/UTF-8 \

1904
localedata/locales/km_KH Normal file

File diff suppressed because it is too large Load Diff

View File

@ -12,11 +12,11 @@ static struct
const char *loc;
} tests[] =
{
{ (const char[]) { 0x8F, 0xA2, 0xAF }, 3, "ja_JP.eucJP" },
{ (const char[]) { 0xD1, 0xA5 }, 2, "ja_JP.eucJP" },
{ (const char[]) { 0x8E, 0xA5 }, 2, "ja_JP.eucJP" },
{ (const char[]) { 0x8E, 0xA2, 0xA1, 0xA1 }, 4, "zh_TW.eucTW" },
{ (const char[]) { 0xA1, 0xA1 }, 2, "zh_TW.eucTW" },
{ (const char[]) { 0x8F, 0xA2, 0xAF }, 3, "ja_JP.EUC-JP" },
{ (const char[]) { 0xD1, 0xA5 }, 2, "ja_JP.EUC-JP" },
{ (const char[]) { 0x8E, 0xA5 }, 2, "ja_JP.EUC-JP" },
{ (const char[]) { 0x8E, 0xA2, 0xA1, 0xA1 }, 4, "zh_TW.EUC-TW" },
{ (const char[]) { 0xA1, 0xA1 }, 2, "zh_TW.EUC-TW" },
{ (const char[]) { 0xE3, 0x80, 0x80 }, 3, "en_US.UTF-8" },
{ (const char[]) { 0xC3, 0xA4 }, 2, "en_US.UTF-8" }
};