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