Better ASSERT macro.
[gnulib.git] / tests / test-vsnprintf.c
1 /* Test of vsnprintf() function.
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_snprintf (char *buf, int size, const char *format, ...)
43 {
44   va_list args;
45   int ret;
46
47   va_start (args, format);
48   ret = vsnprintf (buf, size, format, args);
49   va_end (args);
50   return ret;
51 }
52
53 int
54 main (int argc, char *argv[])
55 {
56   char buf[8];
57   int size;
58   int retval;
59
60   for (size = 0; size <= 8; size++)
61     {
62       memcpy (buf, "DEADBEEF", 8);
63       retval = my_snprintf (buf, size, "%d", 12345);
64       if (size < 6)
65         {
66           ASSERT (retval < 0 || retval >= size);
67           if (size > 0)
68             {
69               ASSERT (memcmp (buf, "12345", size - 1) == 0);
70               ASSERT (buf[size - 1] == '\0' || buf[size - 1] == '0' + size);
71             }
72           ASSERT (memcmp (buf + size, "DEADBEEF" + size, 8 - size) == 0);
73         }
74       else
75         {
76           ASSERT (retval == 5);
77           ASSERT (memcmp (buf, "12345\0EF", 8) == 0);
78         }
79     }
80
81   return 0;
82 }