mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-25 19:42:19 +00:00
Exercise at least all driver facing functions of this new component. v2: add array test as well v3: some kunit cleanups v4: more tests and cleanups Signed-off-by: Christian König <christian.koenig@amd.com> Acked-by: Alex Deucher <alexander.deucher@amd.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230711133122.3710-3-christian.koenig@amd.com
24 lines
541 B
Makefile
24 lines
541 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_DRM_KUNIT_TEST_HELPERS) += \
|
|
drm_kunit_helpers.o
|
|
|
|
obj-$(CONFIG_DRM_KUNIT_TEST) += \
|
|
drm_buddy_test.o \
|
|
drm_cmdline_parser_test.o \
|
|
drm_connector_test.o \
|
|
drm_damage_helper_test.o \
|
|
drm_dp_mst_helper_test.o \
|
|
drm_format_helper_test.o \
|
|
drm_format_test.o \
|
|
drm_framebuffer_test.o \
|
|
drm_managed_test.o \
|
|
drm_mm_test.o \
|
|
drm_modes_test.o \
|
|
drm_plane_helper_test.o \
|
|
drm_probe_helper_test.o \
|
|
drm_rect_test.o \
|
|
drm_exec_test.o
|
|
|
|
CFLAGS_drm_mm_test.o := $(DISABLE_STRUCTLEAK_PLUGIN)
|