mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-24 11:02:51 +00:00
The subtest typically has an execution time long enough to motivate a separate test so that it can be easily excluded if needed. v2: reword commit message(Thomas) Cc: Matthew Auld <matthew.auld@intel.com> Cc: Thomas Hellström <thomas.hellstrom@linux.intel.com> Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20241218141447.2528530-1-nirmoy.das@intel.com Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
24 lines
723 B
C
24 lines
723 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Copyright © 2023 Intel Corporation
|
|
*/
|
|
#include <linux/module.h>
|
|
#include <kunit/test.h>
|
|
|
|
extern struct kunit_suite xe_bo_test_suite;
|
|
extern struct kunit_suite xe_bo_shrink_test_suite;
|
|
extern struct kunit_suite xe_dma_buf_test_suite;
|
|
extern struct kunit_suite xe_migrate_test_suite;
|
|
extern struct kunit_suite xe_mocs_test_suite;
|
|
|
|
kunit_test_suite(xe_bo_test_suite);
|
|
kunit_test_suite(xe_bo_shrink_test_suite);
|
|
kunit_test_suite(xe_dma_buf_test_suite);
|
|
kunit_test_suite(xe_migrate_test_suite);
|
|
kunit_test_suite(xe_mocs_test_suite);
|
|
|
|
MODULE_AUTHOR("Intel Corporation");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_DESCRIPTION("xe live kunit tests");
|
|
MODULE_IMPORT_NS("EXPORTED_FOR_KUNIT_TESTING");
|