diff options
author | Pedro Alves <palves@redhat.com> | 2017-10-30 11:41:34 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2017-10-30 11:41:34 +0000 |
commit | 31b833b3eab69d91df67edc3e9a21792abc3f93e (patch) | |
tree | 07255c92a3c1050c3eda1dc6fc2812c379670483 /gdb/unittests | |
parent | 4a25033455f1e4e0325fdd249e30a79efc856689 (diff) | |
download | gdb-31b833b3eab69d91df67edc3e9a21792abc3f93e.zip gdb-31b833b3eab69d91df67edc3e9a21792abc3f93e.tar.gz gdb-31b833b3eab69d91df67edc3e9a21792abc3f93e.tar.bz2 |
Introduce string_appendf/string_vappendf
string_appendf is like string_printf, but instead of allocating a new
string, it appends to an existing string. This allows reusing a
std::string's memory buffer across several calls, for example.
gdb/ChangeLog:
2017-10-30 Pedro Alves <palves@redhat.com>
* common/common-utils.c (string_appendf, string_vappendf): New
functions.
* common/common-utils.h (string_appendf, string_vappendf): New
declarations.
* unittests/common-utils-selftests.c (string_appendf_func)
(test_appendf_func, string_vappendf_wrapper, string_appendf_tests)
(string_vappendf_tests): New functions.
(_initialize_common_utils_selftests): Register "string_appendf" and
"string_vappendf tests".
Diffstat (limited to 'gdb/unittests')
-rw-r--r-- | gdb/unittests/common-utils-selftests.c | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/gdb/unittests/common-utils-selftests.c b/gdb/unittests/common-utils-selftests.c index 596406e..0e1d2c6 100644 --- a/gdb/unittests/common-utils-selftests.c +++ b/gdb/unittests/common-utils-selftests.c @@ -77,6 +77,52 @@ string_vprintf_tests () test_format_func (format); } +/* Type of both 'string_appendf' and the 'string_vappendf_wrapper' + function below. Used to run the same tests against both + string_appendf and string_vappendf. */ +typedef void (string_appendf_func) (std::string &str, const char *fmt, ...) + ATTRIBUTE_PRINTF (2, 3); + +static void +test_appendf_func (string_appendf_func *func) +{ + std::string str; + + func (str, "%s", ""); + SELF_CHECK (str == ""); + + func (str, "%s", "test"); + SELF_CHECK (str == "test"); + + func (str, "%d", 23); + SELF_CHECK (str == "test23"); + + func (str, "%s %d %s", "foo", 45, "bar"); + SELF_CHECK (str == "test23foo 45 bar"); +} + +static void ATTRIBUTE_PRINTF (2, 3) +string_vappendf_wrapper (std::string &str, const char *fmt, ...) +{ + va_list vp; + + va_start (vp, fmt); + string_vappendf (str, fmt, vp); + va_end (vp); +} + +static void +string_appendf_tests () +{ + test_appendf_func (string_appendf); +} + +static void +string_vappendf_tests () +{ + test_appendf_func (string_vappendf_wrapper); +} + } /* namespace selftests */ void @@ -84,4 +130,7 @@ _initialize_common_utils_selftests () { selftests::register_test ("string_printf", selftests::string_printf_tests); selftests::register_test ("string_vprintf", selftests::string_vprintf_tests); + selftests::register_test ("string_appendf", selftests::string_appendf_tests); + selftests::register_test ("string_vappendf", + selftests::string_vappendf_tests); } |