diff options
| author | Simon Glass <[email protected]> | 2025-01-20 14:26:00 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-01-24 14:34:41 -0600 |
| commit | 561320beffd10d133a316aacaf3170387324bdae (patch) | |
| tree | 93d839d4a85ce4b77800d761e26bf8b690cdc8fe /include/test/test.h | |
| parent | 0925659a5226ee70dab8b4d3e9c8aba9ec586548 (diff) | |
test: Keep a track of the numbers of tests run
This is useful information and is not always the same as the 'count' arg
to ut_run_list() so add it as a separate stat.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include/test/test.h')
| -rw-r--r-- | include/test/test.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/test/test.h b/include/test/test.h index bc8f0bbe501..f7087ab4eea 100644 --- a/include/test/test.h +++ b/include/test/test.h @@ -14,10 +14,13 @@ * * @fail_count: Number of tests that failed * @skip_count: Number of tests that were skipped + * @test_count: Number of tests run. If a test is run muiltiple times, only one + * is counted */ struct ut_stats { int fail_count; int skip_count; + int test_count; }; /* |
