1998-04-29  Ulrich Drepper  <drepper@cygnus.com>

	* tst-locale.sh: Add comment for when multi-byte charsets in
	locales work.
	* tests/test5.cm: New file.
	* tests/test5.def: New file.
	* Makefile (ld-test-names): Add test5.
This commit is contained in:
Ulrich Drepper 1998-04-29 23:02:41 +00:00
parent b062f051ec
commit 679f5a56f9
6 changed files with 62 additions and 3 deletions

View File

@ -317,7 +317,7 @@ get_toplvl_escape (struct linereader *lr)
if (base != 16 && isdigit (ch))
{
byte *= base;
base += ch - '0';
byte += ch - '0';
ch = lr_getc (lr);
}

View File

@ -1,3 +1,11 @@
1998-04-29 Ulrich Drepper <drepper@cygnus.com>
* tst-locale.sh: Add comment for when multi-byte charsets in
locales work.
* tests/test5.cm: New file.
* tests/test5.def: New file.
* Makefile (ld-test-names): Add test5.
1998-04-28 Ulrich Drepper <drepper@cygnus.com>
* locales/de_DE: Use . as thousands separator and 3;3 groups for

View File

@ -37,7 +37,7 @@ test-output := $(foreach s, .out .xout, \
generated := $(test-input) $(test-output)
generated-dirs := $(basename $(test-input)) en_US
ld-test-names := test1 test2 test3 test4
ld-test-names := test1 test2 test3 test4 test5
ld-test-srcs := $(addprefix tests/,$(addsuffix .cm,$(ld-test-names)) \
$(addsuffix .def,$(ld-test-names)))

13
localedata/tests/test5.cm Normal file
View File

@ -0,0 +1,13 @@
<comment_char> %
<escape_char> /
<mb_cur_max> 2
<mb_cur_min> 1
CHARMAP
<k0101>...<k0194> /xa1/xa1
<k0201>...<k0294> /xa2/xa1
<k1601>...<k1694> /xa3/xa1
<k1701>...<k1794> /xa4/xa1
<k4001>...<k4094> /xa5/xa1
<k5001>...<k5094> /xa6/xa1
<k6001>...<k6094> /xa7/xa1
END CHARMAP

View File

@ -0,0 +1,36 @@
escape_char /
comment_char %
LC_TIME
abday "<k0101><k0102><k0103>";"<k0101><k0102><k0103>";/
"<k4001><k4002><k4003>";"<k4001><k4002><k4003>";/
"<k5001><k5002><k5003>";"<k5001><k5002><k5003>";/
"<k6001><k6002><k6003>"
day "<k6001><k6002><k6003>";/
"<k6001><k6002><k6003>";/
"<k6001><k6002><k6003>";/
"<k6001><k6002><k6003>";/
"<k6001><k6002><k6003>";/
"<k6001><k6002><k6003>";/
"<k6001><k6002><k6003>"
abmon "<k6001>";"<k6001>";/
"<k6001>";"<k6001>";/
"<k6001>";"<k6001>";/
"<k6001>";"<k6001>";/
"<k6001>";"<k6001>";/
"<k6001>";"<k6001>"
mon "<k6001>";"<k6001>";/
"<k6001>";"<k6001>";/
"<k6001>";"<k6001>";/
"<k6001>";"<k6001>";/
"<k6001>";"<k6001>";/
"<k6001>";"<k6001>"
d_t_fmt ""
d_fmt ""
t_fmt ""
am_pm "<k6001><k5002>";"<k5002><k4036>"
t_fmt_ampm ""
END LC_TIME

View File

@ -39,12 +39,14 @@ test_locale ()
}
# I take this out for now since it is a known problem
# (see [PR libc/229] and [PR libc/454].
# (see [PR libc/229] and [PR libc/454]. --drepper
# test_locale IBM437 de_DE de_DE.437
test_locale tests/test1.cm tests/test1.def test1
test_locale tests/test2.cm tests/test2.def test2
test_locale tests/test3.cm tests/test3.def test3
test_locale tests/test4.cm tests/test4.def test4
# I know that multi-byte charsets do not yet work. --drepper
# test_locale tests/test5.cm tests/test5.def test5
exit 0