maint.mk: Update system header list for #include syntax checks.
[gnulib.git] / tests / test-vasnwprintf-posix2.c
blob6ec9de83074c52322cfc46f887272c1bc30ed868
1 /* Test of POSIX compatible vasnwprintf() and asnwprintf() functions.
2 Copyright (C) 2007-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>, 2007. */
19 #include <config.h>
21 #include "vasnwprintf.h"
23 #include <locale.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <wchar.h>
28 #include "macros.h"
30 int
31 main (int argc, char *argv[])
33 /* configure should already have checked that the locale is supported. */
34 if (setlocale (LC_ALL, "") == NULL)
35 return 1;
37 /* Test that a locale dependent decimal point is used. */
39 size_t length;
40 wchar_t *result = asnwprintf (NULL, &length, L"%.1a", 1.0);
41 ASSERT (result != NULL);
42 ASSERT (wcscmp (result, L"0x1,0p+0") == 0
43 || wcscmp (result, L"0x2,0p-1") == 0
44 || wcscmp (result, L"0x4,0p-2") == 0
45 || wcscmp (result, L"0x8,0p-3") == 0);
46 ASSERT (length == wcslen (result));
47 free (result);
50 /* Test that a locale dependent decimal point is used. */
52 size_t length;
53 wchar_t *result = asnwprintf (NULL, &length, L"%.1La", 1.0L);
54 ASSERT (result != NULL);
55 ASSERT (wcscmp (result, L"0x1,0p+0") == 0
56 || wcscmp (result, L"0x2,0p-1") == 0
57 || wcscmp (result, L"0x4,0p-2") == 0
58 || wcscmp (result, L"0x8,0p-3") == 0);
59 ASSERT (length == wcslen (result));
60 free (result);
63 return test_exit_status;