From e74aa253e977ffd768a6d3af3535ea5b31e350a7 Mon Sep 17 00:00:00 2001 From: Ronny Chevalier Date: Thu, 11 Dec 2014 18:30:16 +0100 Subject: test-strv: add test for strv_equal --- src/test/test-strv.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'src') diff --git a/src/test/test-strv.c b/src/test/test-strv.c index 674c1b53f..e09b4fb78 100644 --- a/src/test/test-strv.c +++ b/src/test/test-strv.c @@ -470,6 +470,27 @@ static void test_strv_push(void) { assert_se(streq_ptr(a[3], NULL)); } +static void test_strv_equal(void) { + _cleanup_strv_free_ char **a = NULL; + _cleanup_strv_free_ char **b = NULL; + _cleanup_strv_free_ char **c = NULL; + + a = strv_new("one", "two", "three", NULL); + assert_se(a); + b = strv_new("one", "two", "three", NULL); + assert_se(a); + c = strv_new("one", "two", "three", "four", NULL); + assert_se(a); + + assert_se(strv_equal(a, a)); + assert_se(strv_equal(a, b)); + assert_se(strv_equal(NULL, NULL)); + + assert_se(!strv_equal(a, c)); + assert_se(!strv_equal(b, c)); + assert_se(!strv_equal(b, NULL)); +} + int main(int argc, char *argv[]) { test_specifier_printf(); test_strv_foreach(); @@ -519,6 +540,7 @@ int main(int argc, char *argv[]) { test_strv_from_stdarg_alloca(); test_strv_push_prepend(); test_strv_push(); + test_strv_equal(); return 0; } -- cgit v1.2.3