oomd: use ERRNO_IS_NOT_SUPPORTED and ERRNO_IS_PRIVILEGE

This commit is contained in:
Anita Zhang 2020-10-21 01:52:53 -07:00
parent fc9e3b8129
commit 018b6f4548
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ static void test_oomd_cgroup_kill(void) {
/* If we don't have permissions to set xattrs we're likely in a userns or missing capabilities */
r = cg_set_xattr(SYSTEMD_CGROUP_CONTROLLER, cgroup, "user.oomd_test", "test", 4, 0);
if (IN_SET(r, -EPERM, -ENOTSUP))
if (ERRNO_IS_PRIVILEGE(r) || ERRNO_IS_NOT_SUPPORTED(r))
return (void) log_tests_skipped("Cannot set user xattrs");
/* Do this twice to also check the increment behavior on the xattrs */