]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
e721b882 JH |
2 | /* |
3 | * Copyright (c) 2013 Google, Inc. | |
e721b882 JH |
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 | |
6fb2f579 | 17 | * @of_root: Record of the livetree root node (used for setting up tests) |
e721b882 JH |
18 | */ |
19 | struct unit_test_state { | |
20 | int fail_count; | |
21 | struct mallinfo start; | |
22 | void *priv; | |
6fb2f579 | 23 | struct device_node *of_root; |
e721b882 JH |
24 | }; |
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 | */ | |
33 | struct unit_test { | |
801587bd | 34 | const char *file; |
e721b882 JH |
35 | 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) = { \ | |
801587bd | 43 | .file = __FILE__, \ |
e721b882 JH |
44 | .name = #_name, \ |
45 | .flags = _flags, \ | |
46 | .func = _name, \ | |
47 | } | |
48 | ||
dc12ebbb SG |
49 | /* Sizes for devres tests */ |
50 | enum { | |
51 | TEST_DEVRES_SIZE = 100, | |
52 | TEST_DEVRES_COUNT = 10, | |
53 | TEST_DEVRES_TOTAL = TEST_DEVRES_SIZE * TEST_DEVRES_COUNT, | |
54 | ||
42a0ce57 | 55 | /* A few different sizes */ |
dc12ebbb | 56 | TEST_DEVRES_SIZE2 = 15, |
42a0ce57 | 57 | TEST_DEVRES_SIZE3 = 37, |
dc12ebbb | 58 | }; |
e721b882 JH |
59 | |
60 | #endif /* __TEST_TEST_H */ |