Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* locale/lc-ctype.c (_nl_postload_ctype): Update _nl_global_locale's
	special members.
  • Loading branch information
Roland McGrath committed Oct 31, 2003
1 parent decc3af commit 158a85b
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -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.
Expand Down
5 changes: 5 additions & 0 deletions localedata/ChangeLog
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion localedata/Makefile
Expand Up @@ -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
Expand Down
38 changes: 38 additions & 0 deletions localedata/bug-usesetlocale.c
@@ -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"

0 comments on commit 158a85b

Please sign in to comment.