Restore #include "progname.h"
[gnulib.git] / tests / test-vasprintf.c
1 /* Test of vasprintf() and asprintf() 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 <stdio.h>
25
26 #include <stdarg.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 #define ASSERT(expr) \
31   do                                                                         \
32     {                                                                        \
33       if (!(expr))                                                           \
34         {                                                                    \
35           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
36           abort ();                                                          \
37         }                                                                    \
38     }                                                                        \
39   while (0)
40
41 static int
42 my_asprintf (char **result, const char *format, ...)
43 {
44   va_list args;
45   int ret;
46
47   va_start (args, format);
48   ret = vasprintf (result, format, args);
49   va_end (args);
50   return ret;
51 }
52
53 static void
54 test_vasprintf ()
55 {
56   int repeat;
57
58   for (repeat = 0; repeat <= 8; repeat++)
59     {
60       char *result;
61       int retval = my_asprintf (&result, "%d", 12345);
62       ASSERT (retval == 5);
63       ASSERT (result != NULL);
64       ASSERT (strcmp (result, "12345") == 0);
65       free (result);
66     }
67 }
68
69 static void
70 test_asprintf ()
71 {
72   int repeat;
73
74   for (repeat = 0; repeat <= 8; repeat++)
75     {
76       char *result;
77       int retval = asprintf (&result, "%d", 12345);
78       ASSERT (retval == 5);
79       ASSERT (result != NULL);
80       ASSERT (strcmp (result, "12345") == 0);
81       free (result);
82     }
83 }
84
85 int
86 main (int argc, char *argv[])
87 {
88   test_vasprintf ();
89   test_asprintf ();
90   return 0;
91 }