diff options
author | Daniel Buch <boogiewasthere@gmail.com> | 2013-02-13 16:13:36 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2013-02-13 20:21:44 +0100 |
commit | a1022300b9f5af6249292acf93f5c6d4bf45e655 (patch) | |
tree | b1333b2c78c4a377c6c0fc62595ef19877f590f1 | |
parent | cbb7712189527f9f483321607e44c4ead3dd11b8 (diff) |
test-strv.c: added strv_merge test
-rw-r--r-- | src/test/test-strv.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/test-strv.c b/src/test/test-strv.c index 07aac3a670..3ed5a09836 100644 --- a/src/test/test-strv.c +++ b/src/test/test-strv.c @@ -158,6 +158,24 @@ static void test_strv_sort(void) { assert(streq(input_table[4], "durian")); } +static void test_strv_merge(void) { + _cleanup_strv_free_ char **a = NULL, **b = NULL, **c = NULL; + + a = strv_new("abc", "def", "ghi", NULL); + b = strv_new("jkl", "mno", "pqr", NULL); + + c = strv_merge(a, b); + + assert(streq(c[0], "abc")); + assert(streq(c[1], "def")); + assert(streq(c[2], "ghi")); + assert(streq(c[3], "jkl")); + assert(streq(c[4], "mno")); + assert(streq(c[5], "pqr")); + + assert(strv_length(c) == 6); +} + int main(int argc, char *argv[]) { test_specifier_printf(); test_strv_find(); @@ -166,6 +184,7 @@ int main(int argc, char *argv[]) { test_strv_parse_nulstr(); test_strv_overlap(); test_strv_sort(); + test_strv_merge(); return 0; } |