Tests for module 'vsnprintf'.
[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) if (!(expr)) abort ();
31
32 static int
33 my_snprintf (char *buf, int size, const char *format, ...)
34 {
35   va_list args;
36   int ret;
37
38   va_start (args, format);
39   ret = vsnprintf (buf, size, format, args);
40   va_end (args);
41   return ret;
42 }
43
44 int
45 main (int argc, char *argv[])
46 {
47   char buf[8];
48   int size;
49   int retval;
50
51   for (size = 0; size <= 8; size++)
52     {
53       memcpy (buf, "DEADBEEF", 8);
54       retval = my_snprintf (buf, size, "%d", 12345);
55       if (size < 6)
56         {
57           ASSERT (retval < 0 || retval >= size);
58           if (size > 0)
59             {
60               ASSERT (memcmp (buf, "12345", size - 1) == 0);
61               ASSERT (buf[size - 1] == '\0' || buf[size - 1] == '0' + size);
62             }
63           ASSERT (memcmp (buf + size, "DEADBEEF" + size, 8 - size) == 0);
64         }
65       else
66         {
67           ASSERT (retval == 5);
68           ASSERT (memcmp (buf, "12345\0EF", 8) == 0);
69         }
70     }
71
72   return 0;
73 }