maint.mk: Update system header list for #include syntax checks.
[gnulib.git] / tests / test-nl_langinfo-mt.c
blobb7e16fccceeec6ccc3e1ff36684b7ab6ee25a853
1 /* Multithread-safety test for nl_langinfo().
2 Copyright (C) 2019-2024 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2019. */
19 #include <config.h>
21 /* Work around GCC bug 44511. */
22 #if 4 < __GNUC__ + (3 <= __GNUC_MINOR__)
23 # pragma GCC diagnostic ignored "-Wreturn-type"
24 #endif
26 #if USE_ISOC_THREADS || USE_POSIX_THREADS || USE_ISOC_AND_POSIX_THREADS || USE_WINDOWS_THREADS
28 /* Specification. */
29 #include <langinfo.h>
31 #include <locale.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <time.h>
37 #include "glthread/thread.h"
40 /* Some common locale names. */
42 #if defined _WIN32 && !defined __CYGWIN__
43 # define ENGLISH "English_United States"
44 # define FRENCH "French_France"
45 # define GERMAN "German_Germany"
46 # define ENCODING ".1252"
47 #else
48 # define ENGLISH "en_US"
49 # define FRENCH "fr_FR"
50 # define GERMAN "de_DE"
51 # if defined __sgi
52 # define ENCODING ".ISO8859-15"
53 # elif defined __hpux
54 # define ENCODING ".utf8"
55 # else
56 # define ENCODING ".UTF-8"
57 # endif
58 #endif
60 static const char LOCALE1[] = ENGLISH ENCODING;
61 static const char LOCALE2[] = FRENCH ENCODING;
62 static const char LOCALE3[] = GERMAN ENCODING;
64 static char *expected1;
66 static void *
67 thread1_func (void *arg)
69 for (;;)
71 const char *value = nl_langinfo (CODESET);
72 if (strcmp (expected1, value) != 0)
74 fprintf (stderr, "thread1 disturbed by threadN!\n"); fflush (stderr);
75 abort ();
79 /*NOTREACHED*/
82 static char *expected2;
84 static void *
85 thread2_func (void *arg)
87 for (;;)
89 const char *value = nl_langinfo (PM_STR);
90 if (strcmp (expected2, value) != 0)
92 fprintf (stderr, "thread2 disturbed by threadN!\n"); fflush (stderr);
93 abort ();
97 /*NOTREACHED*/
100 static char *expected3;
102 static void *
103 thread3_func (void *arg)
105 for (;;)
107 const char *value = nl_langinfo (DAY_2);
108 if (strcmp (expected3, value) != 0)
110 fprintf (stderr, "thread3 disturbed by threadN!\n"); fflush (stderr);
111 abort ();
115 /*NOTREACHED*/
118 static char *expected4;
120 static void *
121 thread4_func (void *arg)
123 for (;;)
125 const char *value = nl_langinfo (ALTMON_2);
126 if (strcmp (expected4, value) != 0)
128 fprintf (stderr, "thread4 disturbed by threadN!\n"); fflush (stderr);
129 abort ();
133 /*NOTREACHED*/
136 static char *expected5;
138 static void *
139 thread5_func (void *arg)
141 for (;;)
143 const char *value = nl_langinfo (CRNCYSTR);
144 if (strcmp (expected5, value) != 0)
146 fprintf (stderr, "thread5 disturbed by threadN!\n"); fflush (stderr);
147 abort ();
151 /*NOTREACHED*/
154 static char *expected6;
156 static void *
157 thread6_func (void *arg)
159 for (;;)
161 const char *value = nl_langinfo (RADIXCHAR);
162 if (strcmp (expected6, value) != 0)
164 fprintf (stderr, "thread6 disturbed by threadN!\n"); fflush (stderr);
165 abort ();
169 /*NOTREACHED*/
172 static void *
173 threadN_func (void *arg)
175 for (;;)
177 nl_langinfo (CODESET); /* LC_CTYPE */ /* locale charmap */
178 nl_langinfo (AM_STR); /* LC_TIME */ /* locale -k am_pm */
179 nl_langinfo (PM_STR); /* LC_TIME */ /* locale -k am_pm */
180 nl_langinfo (DAY_2); /* LC_TIME */ /* locale -k day */
181 nl_langinfo (DAY_5); /* LC_TIME */ /* locale -k day */
182 nl_langinfo (ALTMON_2); /* LC_TIME */ /* locale -k alt_mon */
183 nl_langinfo (ALTMON_9); /* LC_TIME */ /* locale -k alt_mon */
184 nl_langinfo (CRNCYSTR); /* LC_MONETARY */ /* locale -k currency_symbol */
185 nl_langinfo (RADIXCHAR); /* LC_NUMERIC */ /* locale -k decimal_point */
186 nl_langinfo (THOUSEP); /* LC_NUMERIC */ /* locale -k thousands_sep */
189 /*NOTREACHED*/
193 main (int argc, char *argv[])
195 if (setlocale (LC_ALL, LOCALE1) == NULL)
197 fprintf (stderr, "Skipping test: LOCALE1 not recognized\n");
198 return 77;
200 if (setlocale (LC_MONETARY, LOCALE2) == NULL)
202 fprintf (stderr, "Skipping test: LOCALE2 not recognized\n");
203 return 77;
205 if (setlocale (LC_NUMERIC, LOCALE3) == NULL)
207 fprintf (stderr, "Skipping test: LOCALE3 not recognized\n");
208 return 77;
211 expected1 = strdup (nl_langinfo (CODESET));
212 expected2 = strdup (nl_langinfo (PM_STR));
213 expected3 = strdup (nl_langinfo (DAY_2));
214 expected4 = strdup (nl_langinfo (ALTMON_2));
215 expected5 = strdup (nl_langinfo (CRNCYSTR));
216 expected6 = strdup (nl_langinfo (RADIXCHAR));
218 /* Create the checker threads. */
219 gl_thread_create (thread1_func, NULL);
220 gl_thread_create (thread2_func, NULL);
221 gl_thread_create (thread3_func, NULL);
222 gl_thread_create (thread4_func, NULL);
223 gl_thread_create (thread5_func, NULL);
224 gl_thread_create (thread6_func, NULL);
225 /* Create the disturber thread. */
226 gl_thread_create (threadN_func, NULL);
228 /* Let them run for 2 seconds. */
230 struct timespec duration;
231 duration.tv_sec = (argc > 1 ? atoi (argv[1]) : 2);
232 duration.tv_nsec = 0;
234 nanosleep (&duration, NULL);
237 return 0;
240 #else
242 /* No multithreading available. */
244 #include <stdio.h>
247 main ()
249 fputs ("Skipping test: multithreading not enabled\n", stderr);
250 return 77;
253 #endif