mirror of
https://github.com/torvalds/linux.git
synced 2026-04-19 15:24:02 -04:00
Debugging LUT math is much easier when we can unit test it. Add kunit functionality to VKMS and add tests for - get_lut_index - lerp_u16 Reviewed-by: Louis Chauvet <louis.chauvet@bootlin.com> Signed-off-by: Alex Hung <alex.hung@amd.com> Signed-off-by: Harry Wentland <harry.wentland@amd.com> Cc: Arthur Grillo <arthurgrillo@riseup.net> Reviewed-by: Daniel Stone <daniels@collabora.com> Signed-off-by: Simon Ser <contact@emersion.fr> Link: https://patch.msgid.link/20251115000237.3561250-3-alex.hung@amd.com
9 lines
185 B
Makefile
9 lines
185 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
vkms-kunit-tests-y := \
|
|
vkms_config_test.o \
|
|
vkms_format_test.o \
|
|
vkms_color_test.o
|
|
|
|
obj-$(CONFIG_DRM_VKMS_KUNIT_TEST) += vkms-kunit-tests.o
|