summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/test/test.h3
-rw-r--r--test/test-main.c2
2 files changed, 5 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;
};
/*
diff --git a/test/test-main.c b/test/test-main.c
index e8aecd267c7..e36bc37d29e 100644
--- a/test/test-main.c
+++ b/test/test-main.c
@@ -643,6 +643,7 @@ static int ut_run_tests(struct unit_test_state *uts, const char *prefix,
}
old_fail_count = uts->cur.fail_count;
+ uts->cur.test_count++;
if (one && upto == pos) {
ret = ut_run_test_live_flat(uts, one);
if (uts->cur.fail_count != old_fail_count) {
@@ -717,6 +718,7 @@ int ut_run_list(struct unit_test_state *uts, const char *category,
if (has_dm_tests)
dm_test_restore(uts->of_root);
+ printf("Tests run: %d, ", uts->cur.test_count);
if (uts->cur.skip_count)
printf("Skipped: %d, ", uts->cur.skip_count);
if (ret == -ENOENT)