test-framework-sh: Don't leave temporary directories on NetBSD.
[gnulib.git] / tests / test-vasprintf.c
blob2e43dc3e33c4b2352bb789b848d64dbfe894124d
1 /* Test of vasprintf() and asprintf() functions.
2 Copyright (C) 2007-2024 Free Software Foundation, Inc.
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.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2007. */
19 #include <config.h>
21 #include <stdio.h>
23 #include "signature.h"
24 SIGNATURE_CHECK (asprintf, int, (char **, char const *, ...));
25 SIGNATURE_CHECK (vasprintf, int, (char **, char const *, va_list));
27 #include <stdarg.h>
28 #include <stdlib.h>
29 #include <string.h>
31 #include "macros.h"
33 static int
34 my_asprintf (char **result, const char *format, ...)
36 va_list args;
37 int ret;
39 va_start (args, format);
40 ret = vasprintf (result, format, args);
41 va_end (args);
42 return ret;
45 static void
46 test_vasprintf ()
48 int repeat;
50 for (repeat = 0; repeat <= 8; repeat++)
52 char *result;
53 int retval = my_asprintf (&result, "%d", 12345);
54 ASSERT (retval == 5);
55 ASSERT (result != NULL);
56 ASSERT (strcmp (result, "12345") == 0);
57 free (result);
60 for (repeat = 0; repeat <= 8; repeat++)
62 char *result;
63 int retval = my_asprintf (&result, "%08lx", 12345UL);
64 ASSERT (retval == 8);
65 ASSERT (result != NULL);
66 ASSERT (strcmp (result, "00003039") == 0);
67 free (result);
71 static void
72 test_asprintf ()
74 int repeat;
76 for (repeat = 0; repeat <= 8; repeat++)
78 char *result;
79 int retval = asprintf (&result, "%d", 12345);
80 ASSERT (retval == 5);
81 ASSERT (result != NULL);
82 ASSERT (strcmp (result, "12345") == 0);
83 free (result);
86 for (repeat = 0; repeat <= 8; repeat++)
88 char *result;
89 int retval = asprintf (&result, "%08lx", 12345UL);
90 ASSERT (retval == 8);
91 ASSERT (result != NULL);
92 ASSERT (strcmp (result, "00003039") == 0);
93 free (result);
97 int
98 main (int argc, char *argv[])
100 test_vasprintf ();
101 test_asprintf ();
102 return test_exit_status;