From: Lennart Poettering Date: Fri, 12 Dec 2014 17:42:19 +0000 (+0100) Subject: test-cap-list: always check libcap comes to the same names as we do, for the names... X-Git-Tag: v219~1019 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=4b7c1d5d6a006088910bac42ab3b777be9cf3cc1 test-cap-list: always check libcap comes to the same names as we do, for the names it knows --- diff --git a/src/test/test-cap-list.c b/src/test/test-cap-list.c index a53652264..238f876f2 100644 --- a/src/test/test-cap-list.c +++ b/src/test/test-cap-list.c @@ -45,5 +45,24 @@ int main(int argc, char *argv[]) { assert_se(capability_from_name("15") == 15); assert_se(capability_from_name("-1") == -EINVAL); + for (i = 0; i <= (int) cap_last_cap(); i++) { + _cleanup_cap_free_charp_ char *a = NULL; + const char *b; + unsigned u; + + assert_se(a = cap_to_name(i)); + + /* quite the loop as soon as libcap only returns + * numeric ids, formatted as string */ + if (safe_atou(a, &u) >= 0) + break; + + assert_se(b = capability_to_name(i)); + + printf("%s vs. %s\n", a, b); + + assert_se(streq(a, b)); + } + return 0; }