mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-18 12:16:13 +08:00
* locale/lc-ctype.c (_nl_postload_ctype): Update _nl_global_locale's
special members.
This commit is contained in:
parent
decc3affca
commit
158a85bff1
@ -1,3 +1,8 @@
|
||||
2003-10-31 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* locale/lc-ctype.c (_nl_postload_ctype): Update _nl_global_locale's
|
||||
special members.
|
||||
|
||||
2003-10-29 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* po/be.po: Update from translation team.
|
||||
|
@ -1,3 +1,8 @@
|
||||
2003-10-31 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* bug-usesetlocale.c: New file.
|
||||
* Makefile (tests): Add it.
|
||||
|
||||
2003-10-01 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* SUPPORTED (SUPPORTED-LOCALES): Add uz_UZ@cyrillic.UTF-8.
|
||||
|
@ -92,7 +92,7 @@ locale_test_suite := tst_iswalnum tst_iswalpha tst_iswcntrl \
|
||||
tst_wctype tst_wcwidth
|
||||
|
||||
tests = $(locale_test_suite) tst-digits tst-setlocale bug-iconv-trans \
|
||||
tst-leaks tst-mbswcs6 tst-xlocale1 tst-xlocale2
|
||||
tst-leaks tst-mbswcs6 tst-xlocale1 tst-xlocale2 bug-usesetlocale
|
||||
ifeq (yes,$(build-shared))
|
||||
ifneq (no,$(PERL))
|
||||
tests: $(objpfx)mtrace-tst-leaks
|
||||
|
38
localedata/bug-usesetlocale.c
Normal file
38
localedata/bug-usesetlocale.c
Normal file
@ -0,0 +1,38 @@
|
||||
/* Test case for setlocale vs uselocale (LC_GLOBAL_LOCALE) bug. */
|
||||
|
||||
#define _GNU_SOURCE 1
|
||||
#include <locale.h>
|
||||
#include <stdio.h>
|
||||
#include <ctype.h>
|
||||
|
||||
static int
|
||||
do_test (void)
|
||||
{
|
||||
__locale_t loc_new, loc_old;
|
||||
|
||||
int first = !!isalpha(0xE4);
|
||||
|
||||
setlocale (LC_ALL, "de_DE");
|
||||
|
||||
int global_de = !!isalpha(0xE4);
|
||||
|
||||
loc_new = newlocale (1 << LC_ALL, "C", 0);
|
||||
loc_old = uselocale (loc_new);
|
||||
|
||||
int used_c = !!isalpha(0xE4);
|
||||
|
||||
uselocale (loc_old);
|
||||
|
||||
int used_global = !!isalpha(0xE4);
|
||||
|
||||
printf ("started %d, after setlocale %d\n", first, global_de);
|
||||
printf ("after uselocale %d, after LC_GLOBAL_LOCALE %d\n",
|
||||
used_c, used_global);
|
||||
|
||||
freelocale (loc_new);
|
||||
return !(used_c == first && used_global == global_de);
|
||||
}
|
||||
|
||||
|
||||
#define TEST_FUNCTION do_test ()
|
||||
#include "test-skeleton.c"
|
Loading…
Reference in New Issue
Block a user