Flush the standard error stream before aborting.
[gnulib.git] / tests / unistdio / test-u8-vsprintf1.c
1 /* Test of u8_vsprintf() function.
2    Copyright (C) 2007-2008 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 3 of the License, or
7    (at your option) 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, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Bruno Haible <bruno@clisp.org>, 2007.  */
18
19 #include <config.h>
20
21 #include "unistdio.h"
22
23 #include <errno.h>
24 #include <stdarg.h>
25 #include <stddef.h>
26 #include <stdio.h>
27 #include <stdint.h>
28 #include <stdlib.h>
29 #include <string.h>
30
31 #include "unistr.h"
32 #include "xalloc.h"
33
34 #define SIZEOF(array) (sizeof (array) / sizeof (array[0]))
35 #define ASSERT(expr) \
36   do                                                                         \
37     {                                                                        \
38       if (!(expr))                                                           \
39         {                                                                    \
40           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
41           fflush (stderr);                                                   \
42           abort ();                                                          \
43         }                                                                    \
44     }                                                                        \
45   while (0)
46
47 #include "test-u8-printf1.h"
48
49 static uint8_t *
50 my_xasprintf (const char *format, ...)
51 {
52   va_list args;
53   uint8_t buf[1000];
54   int retval;
55   size_t length;
56   uint8_t *result;
57
58   va_start (args, format);
59   retval = u8_vsprintf (buf, format, args);
60   va_end (args);
61   if (retval < 0 || retval >= (int) sizeof (buf))
62     return NULL;
63   length = u8_strlen (buf);
64   result = XNMALLOC (length + 1, uint8_t);
65   u8_cpy (result, buf, length + 1);
66   return result;
67 }
68
69 static void
70 test_vsprintf ()
71 {
72   test_xfunction (my_xasprintf);
73 }
74
75 int
76 main (int argc, char *argv[])
77 {
78   test_vsprintf ();
79   return 0;
80 }