1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-22 22:03:43 +03:00

test: add really basic in_gid() test

This commit is contained in:
Lennart Poettering 2019-10-31 20:28:49 +01:00
parent 6e0a388854
commit eb2cfa81b0

View File

@ -286,6 +286,15 @@ static void test_make_salt(void) {
assert(!streq(s, t));
}
static void test_in_gid(void) {
assert(in_gid(getgid()) >= 0);
assert(in_gid(getegid()) >= 0);
assert(in_gid(GID_INVALID) < 0);
assert(in_gid(TTY_GID) == 0); /* The TTY gid is for owning ttys, it would be really really weird if we were in it. */
}
int main(int argc, char *argv[]) {
test_uid_to_name_one(0, "root");
test_uid_to_name_one(UID_NOBODY, NOBODY_USER_NAME);
@ -320,5 +329,7 @@ int main(int argc, char *argv[]) {
test_make_salt();
test_in_gid();
return 0;
}