// SPDX-License-Identifier: GPL-2.0 #include <kunit/test.h> #include "protocol.h" struct test_case { … }; /* we can't reuse RFC 4231 test vectors, as we have constraint on the * input and key size. */ static struct test_case tests[] = …; static void mptcp_crypto_test_basic(struct kunit *test) { … } static struct kunit_case mptcp_crypto_test_cases[] = …; static struct kunit_suite mptcp_crypto_suite = …; kunit_test_suite(…) …; MODULE_LICENSE(…) …; MODULE_DESCRIPTION(…) …;