#include <kunit/test.h>
#include "xe_device.h"
#include "xe_kunit_helpers.h"
static int guc_dbm_test_init(struct kunit *test)
{ … }
static void test_empty(struct kunit *test)
{ … }
static void test_default(struct kunit *test)
{ … }
static const unsigned int guc_dbm_params[] = …;
static void uint_param_get_desc(const unsigned int *p, char *desc)
{ … }
KUNIT_ARRAY_PARAM(guc_dbm, guc_dbm_params, uint_param_get_desc);
static void test_size(struct kunit *test)
{ … }
static void test_reuse(struct kunit *test)
{ … }
static void test_range_overlap(struct kunit *test)
{ … }
static void test_range_compact(struct kunit *test)
{ … }
static void test_range_spare(struct kunit *test)
{ … }
static struct kunit_case guc_dbm_test_cases[] = …;
static struct kunit_suite guc_dbm_suite = …;
kunit_test_suites(…);