diff options
author | Martin Pitt <martin.pitt@ubuntu.com> | 2016-09-27 16:25:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-27 16:25:27 +0200 |
commit | b8fafaf4a1cffd02389d61ed92ca7acb1b8c739c (patch) | |
tree | 86ebd6e5617bc070af89556aed247b4eb1f6a6ea /src/test | |
parent | 629abfc23f4e8d61ec0e952182e8200656b2bbe1 (diff) | |
parent | 9aa8fa701b79b74d118df8dbda0940f74aa8735b (diff) |
Merge pull request #4220 from keszybz/show-and-formatting-fixes
Show and formatting fixes
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test-strv.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/test-strv.c b/src/test/test-strv.c index 841a36782f..ce20f2dd5b 100644 --- a/src/test/test-strv.c +++ b/src/test/test-strv.c @@ -54,6 +54,25 @@ static void test_specifier_printf(void) { puts(w); } +static void test_str_in_set(void) { + assert_se(STR_IN_SET("x", "x", "y", "z")); + assert_se(!STR_IN_SET("X", "x", "y", "z")); + assert_se(!STR_IN_SET("", "x", "y", "z")); + assert_se(STR_IN_SET("x", "w", "x")); +} + +static void test_strptr_in_set(void) { + assert_se(STRPTR_IN_SET("x", "x", "y", "z")); + assert_se(!STRPTR_IN_SET("X", "x", "y", "z")); + assert_se(!STRPTR_IN_SET("", "x", "y", "z")); + assert_se(STRPTR_IN_SET("x", "w", "x")); + + assert_se(!STRPTR_IN_SET(NULL, "x", "y", "z")); + assert_se(!STRPTR_IN_SET(NULL, "")); + /* strv cannot contain a null, hence the result below */ + assert_se(!STRPTR_IN_SET(NULL, NULL)); +} + static const char* const input_table_multiple[] = { "one", "two", @@ -703,6 +722,8 @@ static void test_strv_fnmatch(void) { int main(int argc, char *argv[]) { test_specifier_printf(); + test_str_in_set(); + test_strptr_in_set(); test_strv_foreach(); test_strv_foreach_backwards(); test_strv_foreach_pair(); |