1 /* Test of obstack_printf() and obstack_vprintf() functions.
2 Copyright (C) 2008-2020 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 Eric Blake <ebb9@byu.net>, 2008. */
23 #include "signature.h"
24 SIGNATURE_CHECK (obstack_printf
, int, (struct obstack
*, char const *, ...));
25 SIGNATURE_CHECK (obstack_vprintf
, int, (struct obstack
*, char const *,
37 #define obstack_chunk_alloc xmalloc
38 #define obstack_chunk_free free
41 test_function (int (*my_obstack_printf
) (struct obstack
*, const char *, ...))
45 /* In general, be careful that arguments to obstack_* don't have
46 side effects, as not all compilers evaluate macro arguments only
49 /* Grow the obstack to near its boundary, then check that short
50 output longer than the obstack free space grows the obstack. */
52 char *base
= obstack_base (&obs
);
55 int room
= obstack_room (&obs
) - 4;
57 obstack_blank_fast (&obs
, room
);
58 result
= my_obstack_printf (&obs
, "%d %s", 123, "456");
60 ASSERT (result
+ room
== obstack_object_size (&obs
));
61 obstack_1grow (&obs
, 0);
62 new_base
= obstack_finish (&obs
);
63 ASSERT (base
!= new_base
);
64 ASSERT (strcmp (new_base
+ room
, "123 456") == 0);
67 /* Check that strings shorter than the obstack free space don't
68 cause a reshuffling of the obstack. */
70 char *base
= obstack_base (&obs
);
73 int room
= obstack_room (&obs
);
76 result
= my_obstack_printf (&obs
, "%d %s", 123, "456");
78 ASSERT (result
== obstack_object_size (&obs
));
79 new_base
= obstack_base (&obs
);
80 ASSERT (base
== new_base
);
81 ASSERT (strncmp (base
, "123 456", result
) == 0);
82 obstack_finish (&obs
);
85 /* Check for generating much more output than a chunk size. */
87 char *base
= obstack_base (&obs
);
92 ASSERT (obstack_chunk_size (&obs
) < 10000);
93 result
= my_obstack_printf (&obs
, "%010000d", 0);
94 ASSERT (result
== 10000);
95 ASSERT (result
== obstack_object_size (&obs
));
96 new_base
= obstack_base (&obs
);
97 ASSERT (base
!= new_base
);
98 for (i
= 0; i
< 10000; i
++)
99 ASSERT (new_base
[i
] == '0');
102 obstack_free (&obs
, NULL
);
106 my_obstack_printf (struct obstack
*obs
, const char *format
, ...)
111 va_start (args
, format
);
112 ret
= obstack_vprintf (obs
, format
, args
);
118 test_obstack_vprintf ()
120 test_function (my_obstack_printf
);
124 test_obstack_printf ()
126 test_function (obstack_printf
);
130 main (int argc
, char *argv
[])
132 test_obstack_vprintf ();
133 test_obstack_printf ();