On 11/02/25 - 12:09, José Expósito wrote: > Add the required boilerplate to start creating KUnit test. > > To run the tests: > > $ ./tools/testing/kunit/kunit.py run \ > --kunitconfig=drivers/gpu/drm/vkms/tests > > Co-developed-by: Arthur Grillo <arthurgrillo@xxxxxxxxxx> > Signed-off-by: Arthur Grillo <arthurgrillo@xxxxxxxxxx> > Co-developed-by: Louis Chauvet <louis.chauvet@xxxxxxxxxxx> > Signed-off-by: Louis Chauvet <louis.chauvet@xxxxxxxxxxx> > Signed-off-by: José Expósito <jose.exposito89@xxxxxxxxx> > --- > drivers/gpu/drm/vkms/Kconfig | 15 +++++++++++++++ > drivers/gpu/drm/vkms/Makefile | 1 + > drivers/gpu/drm/vkms/tests/.kunitconfig | 4 ++++ > drivers/gpu/drm/vkms/tests/Makefile | 3 +++ > drivers/gpu/drm/vkms/tests/vkms_config_test.c | 19 +++++++++++++++++++ > 5 files changed, 42 insertions(+) > create mode 100644 drivers/gpu/drm/vkms/tests/.kunitconfig > create mode 100644 drivers/gpu/drm/vkms/tests/Makefile > create mode 100644 drivers/gpu/drm/vkms/tests/vkms_config_test.c > > diff --git a/drivers/gpu/drm/vkms/Kconfig b/drivers/gpu/drm/vkms/Kconfig > index 9def079f685b..d4665e913de7 100644 > --- a/drivers/gpu/drm/vkms/Kconfig > +++ b/drivers/gpu/drm/vkms/Kconfig > @@ -14,3 +14,18 @@ config DRM_VKMS > a VKMS. > > If M is selected the module will be called vkms. > + > +config DRM_VKMS_KUNIT_TESTS > + tristate "KUnit tests for VKMS." if !KUNIT_ALL_TESTS If there is a v3, can you remove the dot? With or without this: Reviewed-by: Louis Chauvet <louis.chauvet@xxxxxxxxxxx> Thanks, Louis Chauvet