test: Add a way to check each line of console output
[oweals/u-boot.git] / include / test / test.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2013 Google, Inc.
4  */
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
17  * @of_root: Record of the livetree root node (used for setting up tests)
18  * @expect_str: Temporary string used to hold expected string value
19  * @actual_str: Temporary string used to hold actual string value
20  */
21 struct unit_test_state {
22         int fail_count;
23         struct mallinfo start;
24         void *priv;
25         struct device_node *of_root;
26         char expect_str[256];
27         char actual_str[256];
28 };
29
30 /**
31  * struct unit_test - Information about a unit test
32  *
33  * @name: Name of test
34  * @func: Function to call to perform test
35  * @flags: Flags indicated pre-conditions for test
36  */
37 struct unit_test {
38         const char *file;
39         const char *name;
40         int (*func)(struct unit_test_state *state);
41         int flags;
42 };
43
44 /* Declare a new unit test */
45 #define UNIT_TEST(_name, _flags, _suite)                                \
46         ll_entry_declare(struct unit_test, _name, _suite) = {           \
47                 .file = __FILE__,                                       \
48                 .name = #_name,                                         \
49                 .flags = _flags,                                        \
50                 .func = _name,                                          \
51         }
52
53 /* Sizes for devres tests */
54 enum {
55         TEST_DEVRES_SIZE        = 100,
56         TEST_DEVRES_COUNT       = 10,
57         TEST_DEVRES_TOTAL       = TEST_DEVRES_SIZE * TEST_DEVRES_COUNT,
58
59         /* A few different sizes */
60         TEST_DEVRES_SIZE2       = 15,
61         TEST_DEVRES_SIZE3       = 37,
62 };
63
64 #endif /* __TEST_TEST_H */