blob: 029288de88069675c598a40c4a88d876d2897756 [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)
Simon Glass400175b2020-01-27 08:49:56 -070018 * @expect_str: Temporary string used to hold expected string value
19 * @actual_str: Temporary string used to hold actual string value
Joe Hershbergere721b882015-05-20 14:27:27 -050020 */
21struct unit_test_state {
22 int fail_count;
23 struct mallinfo start;
24 void *priv;
Simon Glass6fb2f572017-05-18 20:09:17 -060025 struct device_node *of_root;
Simon Glass400175b2020-01-27 08:49:56 -070026 char expect_str[256];
27 char actual_str[256];
Joe Hershbergere721b882015-05-20 14:27:27 -050028};
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 */
37struct unit_test {
Simon Glass801587b2017-05-18 20:09:15 -060038 const char *file;
Joe Hershbergere721b882015-05-20 14:27:27 -050039 const char *name;
40 int (*func)(struct unit_test_state *state);
41 int flags;
42};
43
Heinrich Schuchardtd0ba0262020-05-06 18:26:07 +020044/**
45 * UNIT_TEST() - create linker generated list entry for unit a unit test
46 *
47 * The macro UNIT_TEST() is used to create a linker generated list entry. These
48 * list entries are enumerate tests that can be execute using the ut command.
49 * The list entries are used both by the implementation of the ut command as
50 * well as in a related Python test.
51 *
52 * For Python testing the subtests are collected in Python function
53 * generate_ut_subtest() by applying a regular expression to the lines of file
54 * u-boot.sym. The list entries have to follow strict naming conventions to be
55 * matched by the expression.
56 *
57 * Use UNIT_TEST(foo_test_bar, _flags, foo_test) for a test bar in test suite
58 * foo that can be executed via command 'ut foo bar' and is implemented in
59 * function foo_test_bar().
60 *
61 * @_name: concatenation of name of the test suite, "_test_", and the name
62 * of the test
63 * @_flags: an integer field that can be evaluated by the test suite
64 * implementation
65 * @_suite: name of the test suite concatenated with "_test"
66 */
Joe Hershbergere721b882015-05-20 14:27:27 -050067#define UNIT_TEST(_name, _flags, _suite) \
68 ll_entry_declare(struct unit_test, _name, _suite) = { \
Simon Glass801587b2017-05-18 20:09:15 -060069 .file = __FILE__, \
Joe Hershbergere721b882015-05-20 14:27:27 -050070 .name = #_name, \
71 .flags = _flags, \
72 .func = _name, \
73 }
74
Simon Glassdc12ebb2019-12-29 21:19:25 -070075/* Sizes for devres tests */
76enum {
77 TEST_DEVRES_SIZE = 100,
78 TEST_DEVRES_COUNT = 10,
79 TEST_DEVRES_TOTAL = TEST_DEVRES_SIZE * TEST_DEVRES_COUNT,
80
Simon Glass42a0ce52019-12-29 21:19:28 -070081 /* A few different sizes */
Simon Glassdc12ebb2019-12-29 21:19:25 -070082 TEST_DEVRES_SIZE2 = 15,
Simon Glass42a0ce52019-12-29 21:19:28 -070083 TEST_DEVRES_SIZE3 = 37,
Simon Glassdc12ebb2019-12-29 21:19:25 -070084};
Joe Hershbergere721b882015-05-20 14:27:27 -050085
86#endif /* __TEST_TEST_H */