diff options
author | Maíra Canal <maira.canal@usp.br> | 2022-07-08 22:30:49 +0200 |
---|---|---|
committer | Javier Martinez Canillas <javierm@redhat.com> | 2022-07-11 14:00:00 +0200 |
commit | 848b3c0be2b944f633fe9beb28ad28f15c39f7a1 (patch) | |
tree | 38cb96a0dd078aa36fe351d3b8b1fd6e95615c6a /drivers/gpu/drm/tests/Makefile | |
parent | drm: selftest: convert drm_plane_helper selftest to KUnit (diff) | |
download | linux-848b3c0be2b944f633fe9beb28ad28f15c39f7a1.tar.xz linux-848b3c0be2b944f633fe9beb28ad28f15c39f7a1.zip |
drm: selftest: convert drm_dp_mst_helper selftest to KUnit
Considering the current adoption of the KUnit framework, convert the
DRM DP MST helper selftest to the KUnit API.
Co-developed-by: Rubens Gomes Neto <rubens.gomes.neto@usp.br>
Signed-off-by: Rubens Gomes Neto <rubens.gomes.neto@usp.br>
Tested-by: David Gow <davidgow@google.com>
Acked-by: Daniel Latypov <dlatypov@google.com>
Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Signed-off-by: Maíra Canal <maira.canal@usp.br>
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220708203052.236290-7-maira.canal@usp.br
Diffstat (limited to 'drivers/gpu/drm/tests/Makefile')
-rw-r--r-- | drivers/gpu/drm/tests/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/tests/Makefile b/drivers/gpu/drm/tests/Makefile index 4d44006a4f23..5ffacd3eacf3 100644 --- a/drivers/gpu/drm/tests/Makefile +++ b/drivers/gpu/drm/tests/Makefile @@ -1,4 +1,5 @@ # SPDX-License-Identifier: GPL-2.0 obj-$(CONFIG_DRM_KUNIT_TEST) += drm_format_helper_test.o drm_damage_helper_test.o \ - drm_cmdline_parser_test.o drm_rect_test.o drm_format_test.o drm_plane_helper_test.o + drm_cmdline_parser_test.o drm_rect_test.o drm_format_test.o drm_plane_helper_test.o \ + drm_dp_mst_helper_test.o |