mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09:00
test: drop error conditions for old kernels (<3.2)
Now our baseline on the kernel is 5.4.
This commit is contained in:
@@ -39,8 +39,8 @@ static void test_last_cap_file(void) {
|
||||
int r;
|
||||
|
||||
r = read_one_line_file("/proc/sys/kernel/cap_last_cap", &content);
|
||||
if (r == -ENOENT || ERRNO_IS_NEG_PRIVILEGE(r)) /* kernel pre 3.2 or no access */
|
||||
return;
|
||||
if (ERRNO_IS_NEG_PRIVILEGE(r))
|
||||
return (void) log_tests_skipped_errno(r, "Failed to /proc/sys/kernel/cap_last_cap");
|
||||
ASSERT_OK(r);
|
||||
|
||||
r = safe_atolu(content, &val);
|
||||
@@ -235,8 +235,8 @@ static void test_ensure_cap_64_bit(void) {
|
||||
int r;
|
||||
|
||||
r = read_one_line_file("/proc/sys/kernel/cap_last_cap", &content);
|
||||
if (r == -ENOENT || ERRNO_IS_NEG_PRIVILEGE(r)) /* kernel pre 3.2 or no access */
|
||||
return;
|
||||
if (ERRNO_IS_NEG_PRIVILEGE(r))
|
||||
return (void) log_tests_skipped_errno(r, "Failed to /proc/sys/kernel/cap_last_cap");
|
||||
ASSERT_OK(r);
|
||||
|
||||
ASSERT_OK(safe_atolu(content, &p));
|
||||
|
||||
Reference in New Issue
Block a user