mirror of
https://github.com/systemd/systemd.git
synced 2024-10-30 06:25:37 +03:00
75 lines
2.5 KiB
C
75 lines
2.5 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "alloc-util.h"
|
|
#include "cgroup-setup.h"
|
|
#include "errno-util.h"
|
|
#include "log.h"
|
|
#include "proc-cmdline.h"
|
|
#include "string-util.h"
|
|
#include "tests.h"
|
|
#include "version.h"
|
|
|
|
static void test_is_wanted_print_one(bool header) {
|
|
_cleanup_free_ char *cmdline = NULL;
|
|
|
|
log_info("-- %s --", __func__);
|
|
assert_se(proc_cmdline(&cmdline) >= 0);
|
|
log_info("cmdline: %s", cmdline);
|
|
if (header) {
|
|
log_info("default-hierarchy=" DEFAULT_HIERARCHY_NAME);
|
|
(void) system("findmnt -n /sys/fs/cgroup");
|
|
}
|
|
|
|
log_info("is_unified_wanted() → %s", yes_no(cg_is_unified_wanted()));
|
|
log_info("is_hybrid_wanted() → %s", yes_no(cg_is_hybrid_wanted()));
|
|
log_info("is_legacy_wanted() → %s", yes_no(cg_is_legacy_wanted()));
|
|
log_info(" ");
|
|
}
|
|
|
|
TEST(is_wanted_print) {
|
|
test_is_wanted_print_one(true);
|
|
test_is_wanted_print_one(false); /* run twice to test caching */
|
|
}
|
|
|
|
TEST(is_wanted) {
|
|
assert_se(setenv("SYSTEMD_PROC_CMDLINE",
|
|
"systemd.unified_cgroup_hierarchy", 1) >= 0);
|
|
test_is_wanted_print_one(false);
|
|
|
|
assert_se(setenv("SYSTEMD_PROC_CMDLINE",
|
|
"systemd.unified_cgroup_hierarchy=0", 1) >= 0);
|
|
test_is_wanted_print_one(false);
|
|
|
|
assert_se(setenv("SYSTEMD_PROC_CMDLINE",
|
|
"systemd.unified_cgroup_hierarchy=0 "
|
|
"systemd.legacy_systemd_cgroup_controller", 1) >= 0);
|
|
test_is_wanted_print_one(false);
|
|
|
|
assert_se(setenv("SYSTEMD_PROC_CMDLINE",
|
|
"systemd.unified_cgroup_hierarchy=0 "
|
|
"systemd.legacy_systemd_cgroup_controller=0", 1) >= 0);
|
|
test_is_wanted_print_one(false);
|
|
|
|
/* cgroup_no_v1=all implies unified cgroup hierarchy, unless otherwise
|
|
* explicitly specified. */
|
|
assert_se(setenv("SYSTEMD_PROC_CMDLINE",
|
|
"cgroup_no_v1=all", 1) >= 0);
|
|
test_is_wanted_print_one(false);
|
|
|
|
assert_se(setenv("SYSTEMD_PROC_CMDLINE",
|
|
"cgroup_no_v1=all "
|
|
"systemd.unified_cgroup_hierarchy=0", 1) >= 0);
|
|
test_is_wanted_print_one(false);
|
|
}
|
|
|
|
static int intro(void) {
|
|
if (access("/proc/cmdline", R_OK) < 0 && ERRNO_IS_PRIVILEGE(errno))
|
|
return log_tests_skipped("can't read /proc/cmdline");
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|
|
DEFINE_TEST_MAIN_WITH_INTRO(LOG_DEBUG, intro);
|