mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-25 12:31:07 +00:00
As was done for the normal kunit tests, group the live tests into a single module, xe_live_test.ko. Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240312145158.2295351-1-lucas.demarchi@intel.com Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
17 lines
362 B
Makefile
17 lines
362 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 \
|
|
xe_bo_test.o \
|
|
xe_dma_buf_test.o \
|
|
xe_migrate_test.o \
|
|
xe_mocs_test.o
|
|
|
|
# Normal kunit tests
|
|
obj-$(CONFIG_DRM_XE_KUNIT_TEST) += xe_test.o
|
|
xe_test-y = xe_test_mod.o \
|
|
xe_pci_test.o \
|
|
xe_rtp_test.o \
|
|
xe_wa_test.o
|