Better ASSERT macro.
[gnulib.git] / tests / test-snprintf.c
1 /* Test of snprintf() 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 <stdlib.h>
27 #include <string.h>
28
29 #define ASSERT(expr) \
30   do                                                                         \
31     {                                                                        \
32       if (!(expr))                                                           \
33         {                                                                    \
34           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
35           abort ();                                                          \
36         }                                                                    \
37     }                                                                        \
38   while (0)
39
40 int
41 main (int argc, char *argv[])
42 {
43   char buf[8];
44   int size;
45   int retval;
46
47   for (size = 0; size <= 8; size++)
48     {
49       memcpy (buf, "DEADBEEF", 8);
50       retval = snprintf (buf, size, "%d", 12345);
51       if (size < 6)
52         {
53           ASSERT (retval < 0 || retval >= size);
54           if (size > 0)
55             {
56               ASSERT (memcmp (buf, "12345", size - 1) == 0);
57               ASSERT (buf[size - 1] == '\0' || buf[size - 1] == '0' + size);
58             }
59           ASSERT (memcmp (buf + size, "DEADBEEF" + size, 8 - size) == 0);
60         }
61       else
62         {
63           ASSERT (retval == 5);
64           ASSERT (memcmp (buf, "12345\0EF", 8) == 0);
65         }
66     }
67
68   return 0;
69 }