diff options
author | Daniel Buch <boogiewasthere@gmail.com> | 2013-02-13 16:13:38 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-02-13 20:22:09 +0100 |
commit | 40857008d814c0c0915767b72c225379ce103a10 (patch) | |
tree | ba8c2c51e5cfda3ad7ceb6780f3a22e241b39d63 /src/test/test-strv.c | |
parent | 343a896935b9573949f57918c375ad783d71febf (diff) |
test-strv.c: added strv_append test
Diffstat (limited to 'src/test/test-strv.c')
-rw-r--r-- | src/test/test-strv.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/test-strv.c b/src/test/test-strv.c index fabc26e25e..535685f219 100644 --- a/src/test/test-strv.c +++ b/src/test/test-strv.c @@ -190,6 +190,19 @@ static void test_strv_merge(void) { assert(strv_length(c) == 6); } +static void test_strv_append(void) { + _cleanup_strv_free_ char **a = NULL, **b = NULL, **c = NULL; + + a = strv_new("test", "test1", NULL); + b = strv_append(a, "test2"); + c = strv_append(NULL, "test3"); + + assert(streq(b[0], "test")); + assert(streq(b[1], "test1")); + assert(streq(b[2], "test2")); + assert(streq(c[0], "test3")); +} + int main(int argc, char *argv[]) { test_specifier_printf(); test_strv_find(); @@ -200,6 +213,7 @@ int main(int argc, char *argv[]) { test_strv_sort(); test_strv_merge(); test_strv_merge_concat(); + test_strv_append(); return 0; } |