mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-09-01 05:57:56 +00:00

The test case logic is implemented by the functions compiled as part of the core Xe driver module and then exported to build and register the test suite in the live test module. But we don't need to export individual test case functions, we may just export the entire test suite. And we don't need to register this test suite in a separate file, it can be done in the main file of the live test module. Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240708111210.1154-5-michal.wajdeczko@intel.com
14 lines
304 B
Makefile
14 lines
304 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
# "live" kunit tests
|
|
obj-$(CONFIG_DRM_XE_KUNIT_TEST) += xe_live_test.o
|
|
xe_live_test-y = xe_live_test_mod.o
|
|
|
|
# Normal kunit tests
|
|
obj-$(CONFIG_DRM_XE_KUNIT_TEST) += xe_test.o
|
|
xe_test-y = xe_test_mod.o \
|
|
xe_args_test.o \
|
|
xe_pci_test.o \
|
|
xe_rtp_test.o \
|
|
xe_wa_test.o
|