]> git.ipfire.org Git - thirdparty/glibc.git/blame - localedata/tst-setlocale.c
Fix nscd/cachedumper.c compile errors
[thirdparty/glibc.git] / localedata / tst-setlocale.c
CommitLineData
9a0fe6a8
UD
1/* Test case by Jakub Jelinek <jakub@redhat.com>. */
2#include <locale.h>
3#include <stdio.h>
4#include <string.h>
5
29955b5d
AS
6static int
7do_test (void)
9a0fe6a8
UD
8{
9 char q[30];
10 char *s;
11
12 setlocale (LC_ALL, "");
13 printf ("after setlocale (LC_ALL, \"\"): %s\n", setlocale(LC_NUMERIC, NULL));
14
15 strcpy (q, "de_DE.UTF-8");
16 setlocale (LC_NUMERIC, q);
17 printf ("after setlocale (LC_NUMERIC, \"%s\"): %s\n",
18 q, setlocale(LC_NUMERIC, NULL));
19
20 strcpy (q, "de_DE.ISO-8859-1");
21 s = setlocale (LC_NUMERIC, NULL);
22 printf ("after overwriting string: %s\n", s);
23
24 return strcmp (s, "de_DE.UTF-8") != 0;
25}
29955b5d
AS
26
27#define TEST_FUNCTION do_test ()
28#include "../test-skeleton.c"