mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-11 16:24:26 +08:00
11318989c3
Add two new tests that verify that thread and threadgroup migrations work as expected. Signed-off-by: Michal Koutný <mkoutny@suse.com> Signed-off-by: Tejun Heo <tj@kernel.org>
15 lines
293 B
Makefile
15 lines
293 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
CFLAGS += -Wall -pthread
|
|
|
|
all:
|
|
|
|
TEST_GEN_PROGS = test_memcontrol
|
|
TEST_GEN_PROGS += test_core
|
|
TEST_GEN_PROGS += test_freezer
|
|
|
|
include ../lib.mk
|
|
|
|
$(OUTPUT)/test_memcontrol: cgroup_util.c
|
|
$(OUTPUT)/test_core: cgroup_util.c
|
|
$(OUTPUT)/test_freezer: cgroup_util.c
|