blob: 98fbcd11f6ffed8dcd55a7b2c27061f060e25022 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Joe Hershbergere721b882015-05-20 14:27:27 -05002/*
3 * Copyright (c) 2013 Google, Inc.
Joe Hershbergere721b882015-05-20 14:27:27 -05004 */
5
6#ifndef __TEST_TEST_H
7#define __TEST_TEST_H
8
9#include <malloc.h>
10
11/*
12 * struct unit_test_state - Entire state of test system
13 *
14 * @fail_count: Number of tests that failed
15 * @start: Store the starting mallinfo when doing leak test
16 * @priv: A pointer to some other info some suites want to track
Simon Glass6fb2f572017-05-18 20:09:17 -060017 * @of_root: Record of the livetree root node (used for setting up tests)
Joe Hershbergere721b882015-05-20 14:27:27 -050018 */
19struct unit_test_state {
20 int fail_count;
21 struct mallinfo start;
22 void *priv;
Simon Glass6fb2f572017-05-18 20:09:17 -060023 struct device_node *of_root;
Joe Hershbergere721b882015-05-20 14:27:27 -050024};
25
26/**
27 * struct unit_test - Information about a unit test
28 *
29 * @name: Name of test
30 * @func: Function to call to perform test
31 * @flags: Flags indicated pre-conditions for test
32 */
33struct unit_test {
Simon Glass801587b2017-05-18 20:09:15 -060034 const char *file;
Joe Hershbergere721b882015-05-20 14:27:27 -050035 const char *name;
36 int (*func)(struct unit_test_state *state);
37 int flags;
38};
39
40/* Declare a new unit test */
41#define UNIT_TEST(_name, _flags, _suite) \
42 ll_entry_declare(struct unit_test, _name, _suite) = { \
Simon Glass801587b2017-05-18 20:09:15 -060043 .file = __FILE__, \
Joe Hershbergere721b882015-05-20 14:27:27 -050044 .name = #_name, \
45 .flags = _flags, \
46 .func = _name, \
47 }
48
49
50#endif /* __TEST_TEST_H */