mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 22:23:05 +00:00

drgn_dump_damon_status is not installed during kselftest setup. It can
break other tests which depend on drgn_dump_damon_status. Install
drgn_dump_damon_status files to fix broken test.
Link: https://lkml.kernel.org/r/20250812140046.660486-1-ekffu200098@gmail.com
Fixes: f3e8e1e513
("selftests/damon: add drgn script for extracting damon status")
Signed-off-by: Sang-Heon Jeon <ekffu200098@gmail.com>
Reviewed-by: SeongJae Park <sj@kernel.org>
Cc: Alexandre Ghiti <alexghiti@rivosinc.com>
Cc: Honggyu Kim <honggyu.kim@sk.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
25 lines
741 B
Makefile
25 lines
741 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for damon selftests
|
|
|
|
TEST_GEN_FILES += access_memory access_memory_even
|
|
|
|
TEST_FILES = _damon_sysfs.py
|
|
TEST_FILES += drgn_dump_damon_status.py
|
|
|
|
# functionality tests
|
|
TEST_PROGS += sysfs.sh
|
|
TEST_PROGS += sysfs.py
|
|
TEST_PROGS += sysfs_update_schemes_tried_regions_wss_estimation.py
|
|
TEST_PROGS += damos_quota.py damos_quota_goal.py damos_apply_interval.py
|
|
TEST_PROGS += damos_tried_regions.py damon_nr_regions.py
|
|
TEST_PROGS += reclaim.sh lru_sort.sh
|
|
|
|
# regression tests (reproducers of previously found bugs)
|
|
TEST_PROGS += sysfs_update_removed_scheme_dir.sh
|
|
TEST_PROGS += sysfs_update_schemes_tried_regions_hang.py
|
|
TEST_PROGS += sysfs_memcg_path_leak.sh
|
|
|
|
EXTRA_CLEAN = __pycache__
|
|
|
|
include ../lib.mk
|