mirror of
https://github.com/systemd/systemd.git
synced 2025-03-19 22:50:17 +03:00
test-cgroup-util: Check return values
The test is supposed to check a battery of cgroup helpers on each process found but it doesn't literally check anything besides presence of procfs. (One can visually check printed output only. Introduction in aff38e74bd ("nspawn: suffix the nspawn cgroups with ".nspawn"").) Make some assumptions about visible processes and turn the test into testing that systemd helpers can deal with whatever process they find on the SUT. Reported by Coverity and Fixes CID#1587767
This commit is contained in:
parent
1f5d8a6132
commit
ca82f0cbe2
@ -218,14 +218,20 @@ TEST(proc) {
|
||||
if (pidref_is_kernel_thread(&pid) != 0)
|
||||
continue;
|
||||
|
||||
cg_pidref_get_path(SYSTEMD_CGROUP_CONTROLLER, &pid, &path);
|
||||
cg_pid_get_path_shifted(pid.pid, NULL, &path_shifted);
|
||||
cg_pidref_get_owner_uid(&pid, &uid);
|
||||
cg_pidref_get_session(&pid, &session);
|
||||
cg_pidref_get_unit(&pid, &unit);
|
||||
cg_pid_get_user_unit(pid.pid, &user_unit);
|
||||
cg_pid_get_machine_name(pid.pid, &machine);
|
||||
cg_pid_get_slice(pid.pid, &slice);
|
||||
ASSERT_OK_ZERO(cg_pidref_get_path(SYSTEMD_CGROUP_CONTROLLER, &pid, &path));
|
||||
ASSERT_OK_ZERO(cg_pid_get_path_shifted(pid.pid, NULL, &path_shifted));
|
||||
ASSERT_OK_ZERO(cg_pidref_get_unit(&pid, &unit));
|
||||
ASSERT_OK_ZERO(cg_pid_get_slice(pid.pid, &slice));
|
||||
|
||||
/* Not all processes belong to a specific user or a machine */
|
||||
r = cg_pidref_get_owner_uid(&pid, &uid);
|
||||
ASSERT_TRUE(r == 0 || r == -ENXIO);
|
||||
r = cg_pidref_get_session(&pid, &session);
|
||||
ASSERT_TRUE(r == 0 || r == -ENXIO);
|
||||
r = cg_pid_get_user_unit(pid.pid, &user_unit);
|
||||
ASSERT_TRUE(r == 0 || r == -ENXIO);
|
||||
r = cg_pid_get_machine_name(pid.pid, &machine);
|
||||
ASSERT_TRUE(r == 0 || r == -ENOENT);
|
||||
|
||||
printf(PID_FMT"\t%s\t%s\t"UID_FMT"\t%s\t%s\t%s\t%s\t%s\n",
|
||||
pid.pid,
|
||||
|
Loading…
x
Reference in New Issue
Block a user