diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-04-14 03:09:32 +0200 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-04-14 03:09:32 +0200 |
commit | ea9b54f827feff046d7d6e5c485d01cf98214762 (patch) | |
tree | 809fbe961aef43eaed8c4525a03a87dfd26cf6c7 /src/test | |
parent | tree-wide: remove useless NULLs from strjoina (diff) | |
download | systemd-ea9b54f827feff046d7d6e5c485d01cf98214762.tar.xz systemd-ea9b54f827feff046d7d6e5c485d01cf98214762.zip |
test-strv: add a test that extending empty strv works as expected
Just making sure :)
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test-strv.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/test/test-strv.c b/src/test/test-strv.c index fea1f848cd..fc01dcfaf1 100644 --- a/src/test/test-strv.c +++ b/src/test/test-strv.c @@ -358,7 +358,7 @@ static void test_strv_extend_strv_concat(void) { } static void test_strv_extend_strv(void) { - _cleanup_strv_free_ char **a = NULL, **b = NULL; + _cleanup_strv_free_ char **a = NULL, **b = NULL, **n = NULL; a = strv_new("abc", "def", "ghi", NULL); b = strv_new("jkl", "mno", "abc", "pqr", NULL); @@ -373,8 +373,14 @@ static void test_strv_extend_strv(void) { assert_se(streq(a[3], "jkl")); assert_se(streq(a[4], "mno")); assert_se(streq(a[5], "pqr")); - assert_se(strv_length(a) == 6); + + assert_se(strv_extend_strv(&n, b, false) >= 0); + assert_se(streq(n[0], "jkl")); + assert_se(streq(n[1], "mno")); + assert_se(streq(n[2], "abc")); + assert_se(streq(n[3], "pqr")); + assert_se(strv_length(n) == 4); } static void test_strv_extend(void) { |