mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-25 23:20:59 -05:00
We want to make sure that helper macros are working as expected. Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Cc: Lucas De Marchi <lucas.demarchi@intel.com> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20240502223313.2527-3-michal.wajdeczko@intel.com
18 lines
380 B
Makefile
18 lines
380 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_args_test.o \
|
|
xe_pci_test.o \
|
|
xe_rtp_test.o \
|
|
xe_wa_test.o
|