* locale/lc-ctype.c (_nl_postload_ctype): Update _nl_global_locale's

special members.
This commit is contained in:
Roland McGrath 2003-10-31 23:35:42 +00:00
parent decc3affca
commit 158a85bff1
4 changed files with 49 additions and 1 deletions

View file

@ -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.

View file

@ -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.

View file

@ -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

View 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"