// SPDX-License-Identifier: GPL-2.0 AND MIT /* * Copyright © 2023 Intel Corporation */ #include <kunit/test.h> static const struct lmtt_ops_param { … } lmtt_ops_params[] = …; static void lmtt_ops_param_get_desc(const struct lmtt_ops_param *p, char *desc) { … } KUNIT_ARRAY_PARAM(lmtt_ops, lmtt_ops_params, lmtt_ops_param_get_desc); static void test_ops(struct kunit *test) { … } static struct kunit_case lmtt_test_cases[] = …; static struct kunit_suite lmtt_suite = …; kunit_test_suites(…);