Test for internationalization of module 'vasnprintf-posix'.
[gnulib.git] / tests / test-vasnprintf-posix2.c
1 /* Test of POSIX compatible vasnprintf() and asnprintf() functions.
2    Copyright (C) 2007 Free Software Foundation, Inc.
3
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 2, or (at your option)
7    any later version.
8
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.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
19
20 #ifdef HAVE_CONFIG_H
21 # include <config.h>
22 #endif
23
24 #include "vasnprintf.h"
25
26 #include <locale.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 #define ASSERT(expr) if (!(expr)) abort ();
31
32 int
33 main (int argc, char *argv[])
34 {
35   /* configure should already have checked that the locale is supported.  */
36   if (setlocale (LC_ALL, "") == NULL)
37     return 1;
38
39   /* Test that a locale dependent decimal point is used.  */
40   {
41     size_t length;
42     char *result = asnprintf (NULL, &length, "%.1a", 1.0);
43     ASSERT (result != NULL);
44     ASSERT (strcmp (result, "0x1,0p+0") == 0
45             || strcmp (result, "0x2,0p-1") == 0
46             || strcmp (result, "0x4,0p-2") == 0
47             || strcmp (result, "0x8,0p-3") == 0);
48     ASSERT (length == strlen (result));
49     free (result);
50   }
51
52 #if HAVE_LONG_DOUBLE
53
54   /* Test that a locale dependent decimal point is used.  */
55   {
56     size_t length;
57     char *result = asnprintf (NULL, &length, "%.1La", 1.0L);
58     ASSERT (result != NULL);
59     ASSERT (strcmp (result, "0x1,0p+0") == 0
60             || strcmp (result, "0x2,0p-1") == 0
61             || strcmp (result, "0x4,0p-2") == 0
62             || strcmp (result, "0x8,0p-3") == 0);
63     ASSERT (length == strlen (result));
64     free (result);
65   }
66
67 #endif
68
69   return 0;
70 }