blob: 03e29290bf433724f100bafcada5900955b90fe5 [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>
Simon Glasse180c2b2020-07-28 19:41:12 -060010#include <linux/bitops.h>
Joe Hershbergere721b882015-05-20 14:27:27 -050011
12/*
13 * struct unit_test_state - Entire state of test system
14 *
15 * @fail_count: Number of tests that failed
16 * @start: Store the starting mallinfo when doing leak test
17 * @priv: A pointer to some other info some suites want to track
Simon Glass6fb2f572017-05-18 20:09:17 -060018 * @of_root: Record of the livetree root node (used for setting up tests)
Simon Glass400175b2020-01-27 08:49:56 -070019 * @expect_str: Temporary string used to hold expected string value
20 * @actual_str: Temporary string used to hold actual string value
Joe Hershbergere721b882015-05-20 14:27:27 -050021 */
22struct unit_test_state {
23 int fail_count;
24 struct mallinfo start;
25 void *priv;
Simon Glass6fb2f572017-05-18 20:09:17 -060026 struct device_node *of_root;
Simon Glass400175b2020-01-27 08:49:56 -070027 char expect_str[256];
28 char actual_str[256];
Joe Hershbergere721b882015-05-20 14:27:27 -050029};
30
Simon Glasse180c2b2020-07-28 19:41:12 -060031/* Test flags for each test */
32enum {
33 UT_TESTF_SCAN_PDATA = BIT(0), /* test needs platform data */
34 UT_TESTF_PROBE_TEST = BIT(1), /* probe test uclass */
35 UT_TESTF_SCAN_FDT = BIT(2), /* scan device tree */
36 UT_TESTF_FLAT_TREE = BIT(3), /* test needs flat DT */
37 UT_TESTF_LIVE_TREE = BIT(4), /* needs live device tree */
Simon Glass132644f2020-07-28 19:41:13 -060038 UT_TESTF_CONSOLE_REC = BIT(5), /* needs console recording */
Simon Glasse180c2b2020-07-28 19:41:12 -060039};
40
Joe Hershbergere721b882015-05-20 14:27:27 -050041/**
42 * struct unit_test - Information about a unit test
43 *
44 * @name: Name of test
45 * @func: Function to call to perform test
46 * @flags: Flags indicated pre-conditions for test
47 */
48struct unit_test {
Simon Glass801587b2017-05-18 20:09:15 -060049 const char *file;
Joe Hershbergere721b882015-05-20 14:27:27 -050050 const char *name;
51 int (*func)(struct unit_test_state *state);
52 int flags;
53};
54
Heinrich Schuchardtd0ba0262020-05-06 18:26:07 +020055/**
56 * UNIT_TEST() - create linker generated list entry for unit a unit test
57 *
58 * The macro UNIT_TEST() is used to create a linker generated list entry. These
59 * list entries are enumerate tests that can be execute using the ut command.
60 * The list entries are used both by the implementation of the ut command as
61 * well as in a related Python test.
62 *
63 * For Python testing the subtests are collected in Python function
64 * generate_ut_subtest() by applying a regular expression to the lines of file
65 * u-boot.sym. The list entries have to follow strict naming conventions to be
66 * matched by the expression.
67 *
68 * Use UNIT_TEST(foo_test_bar, _flags, foo_test) for a test bar in test suite
69 * foo that can be executed via command 'ut foo bar' and is implemented in
70 * function foo_test_bar().
71 *
72 * @_name: concatenation of name of the test suite, "_test_", and the name
73 * of the test
74 * @_flags: an integer field that can be evaluated by the test suite
75 * implementation
76 * @_suite: name of the test suite concatenated with "_test"
77 */
Joe Hershbergere721b882015-05-20 14:27:27 -050078#define UNIT_TEST(_name, _flags, _suite) \
79 ll_entry_declare(struct unit_test, _name, _suite) = { \
Simon Glass801587b2017-05-18 20:09:15 -060080 .file = __FILE__, \
Joe Hershbergere721b882015-05-20 14:27:27 -050081 .name = #_name, \
82 .flags = _flags, \
83 .func = _name, \
84 }
85
Simon Glassdc12ebb2019-12-29 21:19:25 -070086/* Sizes for devres tests */
87enum {
88 TEST_DEVRES_SIZE = 100,
89 TEST_DEVRES_COUNT = 10,
90 TEST_DEVRES_TOTAL = TEST_DEVRES_SIZE * TEST_DEVRES_COUNT,
91
Simon Glass42a0ce52019-12-29 21:19:28 -070092 /* A few different sizes */
Simon Glassdc12ebb2019-12-29 21:19:25 -070093 TEST_DEVRES_SIZE2 = 15,
Simon Glass42a0ce52019-12-29 21:19:28 -070094 TEST_DEVRES_SIZE3 = 37,
Simon Glassdc12ebb2019-12-29 21:19:25 -070095};
Joe Hershbergere721b882015-05-20 14:27:27 -050096
Simon Glassb25ff5c2020-10-25 20:38:28 -060097/**
98 * dm_test_main() - Run driver model tests
99 *
100 * Run all the available driver model tests, or a selection
101 *
102 * @test_name: Name of single test to run (e.g. "dm_test_fdt_pre_reloc" or just
103 * "fdt_pre_reloc"), or NULL to run all
104 * @return 0 if all tests passed, 1 if not
105 */
106int dm_test_main(const char *test_name);
107
Joe Hershbergere721b882015-05-20 14:27:27 -0500108#endif /* __TEST_TEST_H */