]> git.samba.org - sfrench/cifs-2.6.git/blob - drivers/gpu/drm/xe/tests/xe_mocs_test.c
zonefs: convert zonefs to use the new mount api
[sfrench/cifs-2.6.git] / drivers / gpu / drm / xe / tests / xe_mocs_test.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright © 2022 Intel Corporation
4  */
5
6 #include "xe_mocs_test.h"
7
8 #include <kunit/test.h>
9
10 static struct kunit_case xe_mocs_tests[] = {
11         KUNIT_CASE(xe_live_mocs_kernel_kunit),
12         {}
13 };
14
15 static struct kunit_suite xe_mocs_test_suite = {
16         .name = "xe_mocs",
17         .test_cases = xe_mocs_tests,
18 };
19
20 kunit_test_suite(xe_mocs_test_suite);
21
22 MODULE_AUTHOR("Intel Corporation");
23 MODULE_LICENSE("GPL");
24 MODULE_IMPORT_NS(EXPORTED_FOR_KUNIT_TESTING);