diff options
| author | Tom Rini <[email protected]> | 2022-09-02 21:51:21 -0400 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-09-02 21:53:36 -0400 |
| commit | 98b3a998b31a83d8167f888b11ddd5cce8194f35 (patch) | |
| tree | 91e5c815982e9f1823f86f61bc49e28d948d1b4c /include/test | |
| parent | 2d7069126d11f8708ee38c68b1c6cafae5e50dae (diff) | |
| parent | 21ddac140e3040b2693c1a5558a84c19a879c04f (diff) | |
Merge branch '2022-09-02-assorted-improvements' into next
- DM RTC improvements that should help in CI, allow disabling LTO from
the make line, add extension (cape, etc) support to distro bootcmd,
add a pause command and re-enable ARM v4T support.
Diffstat (limited to 'include/test')
| -rw-r--r-- | include/test/test.h | 2 | ||||
| -rw-r--r-- | include/test/ut.h | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/include/test/test.h b/include/test/test.h index c888d68b1ed..2b68331b546 100644 --- a/include/test/test.h +++ b/include/test/test.h @@ -20,6 +20,7 @@ * @testdev: Test device * @force_fail_alloc: Force all memory allocs to fail * @skip_post_probe: Skip uclass post-probe processing + * @runs_per_test: Number of times to run each test (typically 1) * @expect_str: Temporary string used to hold expected string value * @actual_str: Temporary string used to hold actual string value */ @@ -32,6 +33,7 @@ struct unit_test_state { struct udevice *testdev; int force_fail_alloc; int skip_post_probe; + int runs_per_test; char expect_str[512]; char actual_str[512]; }; diff --git a/include/test/ut.h b/include/test/ut.h index 18740f5807c..f7d1d18f7c1 100644 --- a/include/test/ut.h +++ b/include/test/ut.h @@ -403,9 +403,10 @@ void test_set_state(struct unit_test_state *uts); * @count: Number of tests to run * @select_name: Name of a single test to run (from the list provided). If NULL * then all tests are run + * @runs_per_test: Number of times to run each test (typically 1) * Return: 0 if all tests passed, -1 if any failed */ int ut_run_list(const char *name, const char *prefix, struct unit_test *tests, - int count, const char *select_name); + int count, const char *select_name, int runs_per_test); #endif |
