diff options
Diffstat (limited to 'include/test/test.h')
-rw-r--r-- | include/test/test.h | 2 |
1 files changed, 2 insertions, 0 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]; }; |