xref: /linux/net/mctp/test/sock-test.c (revision 19396179a0f1f912b22c051afb468482b0d9466f)
1 // SPDX-License-Identifier: GPL-2.0
2 
3 #include <kunit/test.h>
4 
5 #include "utils.h"
6 
7 static struct kunit_case mctp_test_cases[] = {
8 	{}
9 };
10 
11 static struct kunit_suite mctp_test_suite = {
12 	.name = "mctp-sock",
13 	.test_cases = mctp_test_cases,
14 };
15 
16 kunit_test_suite(mctp_test_suite);
17