linux/drivers/base/test/property-entry-test.c

// SPDX-License-Identifier: GPL-2.0
// Unit tests for property entries API
//
// Copyright 2019 Google LLC.

#include <kunit/test.h>
#include <linux/property.h>
#include <linux/types.h>

static void pe_test_uints(struct kunit *test)
{}

static void pe_test_uint_arrays(struct kunit *test)
{}

static void pe_test_strings(struct kunit *test)
{}

static void pe_test_bool(struct kunit *test)
{}

/* Verifies that small U8 array is stored inline when property is copied */
static void pe_test_move_inline_u8(struct kunit *test)
{}

/* Verifies that single string array is stored inline when property is copied */
static void pe_test_move_inline_str(struct kunit *test)
{}

/* Handling of reference properties */
static void pe_test_reference(struct kunit *test)
{}

static struct kunit_case property_entry_test_cases[] =;

static struct kunit_suite property_entry_test_suite =;

kunit_test_suite();

MODULE_DESCRIPTION();
MODULE_AUTHOR();
MODULE_LICENSE();