mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-04 20:19:47 +08:00

We don't have a set of kunit tests for the functions under drm_atomic.h. Let's use the introduction of drm_atomic_get_connector_for_encoder() to create some tests for it and thus create that set. Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Link: https://patchwork.freedesktop.org/patch/msgid/20250313-bridge-connector-v6-7-511c54a604fb@kernel.org Signed-off-by: Maxime Ripard <mripard@kernel.org>
29 lines
666 B
Makefile
29 lines
666 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
obj-$(CONFIG_DRM_KUNIT_TEST_HELPERS) += \
|
|
drm_kunit_helpers.o
|
|
|
|
obj-$(CONFIG_DRM_KUNIT_TEST) += \
|
|
drm_atomic_test.o \
|
|
drm_atomic_state_test.o \
|
|
drm_bridge_test.o \
|
|
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_exec_test.o \
|
|
drm_format_helper_test.o \
|
|
drm_format_test.o \
|
|
drm_framebuffer_test.o \
|
|
drm_gem_shmem_test.o \
|
|
drm_hdmi_state_helper_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
|
|
|
|
CFLAGS_drm_mm_test.o := $(DISABLE_STRUCTLEAK_PLUGIN)
|