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
10static struct kunit_case xe_dma_buf_tests[] = {
11	KUNIT_CASE(xe_dma_buf_kunit),
12	{}
13};
14
15static struct kunit_suite xe_dma_buf_test_suite = {
16	.name = "xe_dma_buf",
17	.test_cases = xe_dma_buf_tests,
18};
19
20kunit_test_suite(xe_dma_buf_test_suite);
21
22MODULE_AUTHOR("Intel Corporation");
23MODULE_LICENSE("GPL");
24MODULE_DESCRIPTION("xe_dma_buf kunit test");
25MODULE_IMPORT_NS(EXPORTED_FOR_KUNIT_TESTING);
26