xref: /linux/drivers/gpu/drm/xe/tests/xe_bo_test.c (revision 021bc4b9)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright © 2022 Intel Corporation
4  */
5 
6 #include "xe_bo_test.h"
7 
8 #include <kunit/test.h>
9 
10 static struct kunit_case xe_bo_tests[] = {
11 	KUNIT_CASE(xe_ccs_migrate_kunit),
12 	KUNIT_CASE(xe_bo_evict_kunit),
13 	{}
14 };
15 
16 static struct kunit_suite xe_bo_test_suite = {
17 	.name = "xe_bo",
18 	.test_cases = xe_bo_tests,
19 };
20 
21 kunit_test_suite(xe_bo_test_suite);
22 
23 MODULE_AUTHOR("Intel Corporation");
24 MODULE_LICENSE("GPL");
25 MODULE_DESCRIPTION("xe_bo kunit test");
26 MODULE_IMPORT_NS(EXPORTED_FOR_KUNIT_TESTING);
27