usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-c-xvasprintf.c
blob6e3e10d6dd0e5b3973a3abbd71d6fef5d75073ed
1 /* Test of c_xasprintf() and c_xvasprintf() functions.
2 Copyright (C) 2011-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 #include <config.h>
19 #include "c-xvasprintf.h"
21 #include <locale.h>
22 #include <stdio.h>
23 #include <string.h>
25 #include "macros.h"
27 static char *
28 my_c_xasprintf (const char *format, ...)
30 va_list args;
31 char *s;
33 va_start (args, format);
34 s = c_xvasprintf (format, args);
35 va_end (args);
37 return s;
40 int
41 main (int argc, char *argv[])
43 /* configure should already have checked that the locale is supported. */
44 if (setlocale (LC_ALL, "") == NULL)
45 return 1;
47 /* Test behaviour of snprintf() as a "control group".
48 (We should be running in a locale where ',' is the decimal point.) */
50 char s[16];
52 snprintf (s, sizeof s, "%#.0f", 1.0);
53 if (!strcmp (s, "1."))
55 /* Skip the test, since we're not in a useful locale for testing. */
56 return 77;
58 ASSERT (!strcmp (s, "1,"));
61 /* Test behaviour of c_xasprintf() and c_xvasprintf().
62 They should always use '.' as the decimal point. */
64 char *s;
66 s = c_xasprintf ("%#.0f", 1.0);
67 ASSERT (s != NULL);
68 ASSERT (!strcmp (s, "1."));
69 free (s);
71 s = my_c_xasprintf ("%#.0f", 1.0);
72 ASSERT (s != NULL);
73 ASSERT (!strcmp (s, "1."));
74 free (s);
77 return test_exit_status;