diff options
author | David Vernet <void@manifault.com> | 2022-04-23 15:30:54 +0300 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2022-04-25 20:27:31 +0300 |
commit | 5c26993c31f0f726aa1f90158f17ec95069b7cb2 (patch) | |
tree | 0f75007f38546a8e7a1bec7d24b7550865e8a0fb /tools/testing/selftests/cgroup | |
parent | a79906570f9646ae174dd0899ea54cc2eeffd788 (diff) | |
download | linux-5c26993c31f0f726aa1f90158f17ec95069b7cb2.tar.xz |
cgroup: Add config file to cgroup selftest suite
Most of the test suites in tools/testing/selftests contain a config file
that specifies which kernel config options need to be present in order for
the test suite to be able to run and perform meaningful validation. There
is no config file for the tools/testing/selftests/cgroup test suite, so
this patch adds one.
Signed-off-by: David Vernet <void@manifault.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'tools/testing/selftests/cgroup')
-rw-r--r-- | tools/testing/selftests/cgroup/config | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/testing/selftests/cgroup/config b/tools/testing/selftests/cgroup/config new file mode 100644 index 000000000000..84fe884fad86 --- /dev/null +++ b/tools/testing/selftests/cgroup/config @@ -0,0 +1,8 @@ +CONFIG_CGROUPS=y +CONFIG_CGROUP_CPUACCT=y +CONFIG_CGROUP_FREEZER=y +CONFIG_CGROUP_SCHED=y +CONFIG_MEMCG=y +CONFIG_MEMCG_KMEM=y +CONFIG_MEMCG_SWAP=y +CONFIG_PAGE_COUNTER=y |