Skip to content

Commit 027e19f

Browse files
jeremybettiskartben
authored andcommitted
ztest: Don't clear test stats before running suite
test_main can call ztest_run_all multiple times. For example tests/bluetooth/host/keys/bt_keys_get_addr/src/main.c does so. If the first call skips some tests and then they run in the second call, everything is fine. However if they passed or failed in the first run and skipped in the second run, then the test output (json, xml, and printed summary) show the test as skipped even though it ran. The solution is to not clear the test stats. __ztest_init_unit_test_result_for_suite was added in commit 996c845 by nashif. Signed-off-by: Jeremy Bettis <jbettis@google.com>
1 parent 2d34358 commit 027e19f

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

subsys/testsuite/ztest/src/ztest.c

-18
Original file line numberDiff line numberDiff line change
@@ -921,19 +921,6 @@ int z_ztest_run_test_suite(const char *name, bool shuffle,
921921
K_APPMEM_PARTITION_DEFINE(ztest_mem_partition);
922922
#endif
923923

924-
static void __ztest_init_unit_test_result_for_suite(struct ztest_suite_node *suite)
925-
{
926-
struct ztest_unit_test *test = NULL;
927-
928-
while (((test = z_ztest_get_next_test(suite->name, test)) != NULL)) {
929-
test->stats->run_count = 0;
930-
test->stats->skip_count = 0;
931-
test->stats->fail_count = 0;
932-
test->stats->pass_count = 0;
933-
test->stats->duration_worst_ms = 0;
934-
}
935-
}
936-
937924
/* Show one line summary for a test suite.
938925
*/
939926
static void __ztest_show_suite_summary_oneline(struct ztest_suite_node *suite)
@@ -1091,9 +1078,6 @@ int z_impl_ztest_run_test_suites(const void *state, bool shuffle, int suite_iter
10911078
memset(suites_to_run, 0, ZTEST_SUITE_COUNT * sizeof(struct ztest_suite_node *));
10921079
z_ztest_shuffle(shuffle, (void **)suites_to_run, (intptr_t)_ztest_suite_node_list_start,
10931080
ZTEST_SUITE_COUNT, sizeof(struct ztest_suite_node));
1094-
for (size_t i = 0; i < ZTEST_SUITE_COUNT; ++i) {
1095-
__ztest_init_unit_test_result_for_suite(suites_to_run[i]);
1096-
}
10971081
for (size_t i = 0; i < ZTEST_SUITE_COUNT; ++i) {
10981082
count += __ztest_run_test_suite(suites_to_run[i], state, shuffle, suite_iter,
10991083
case_iter, param);
@@ -1108,7 +1092,6 @@ int z_impl_ztest_run_test_suites(const void *state, bool shuffle, int suite_iter
11081092
#else
11091093
for (struct ztest_suite_node *ptr = _ztest_suite_node_list_start;
11101094
ptr < _ztest_suite_node_list_end; ++ptr) {
1111-
__ztest_init_unit_test_result_for_suite(ptr);
11121095
count += __ztest_run_test_suite(ptr, state, shuffle, suite_iter, case_iter, param);
11131096
/* Stop running tests if we have a critical error or if we have a failure and
11141097
* FAIL_FAST was set
@@ -1365,7 +1348,6 @@ static int cmd_run_suite(const struct shell *sh, size_t argc, char **argv)
13651348

13661349
for (struct ztest_suite_node *ptr = _ztest_suite_node_list_start;
13671350
ptr < _ztest_suite_node_list_end; ++ptr) {
1368-
__ztest_init_unit_test_result_for_suite(ptr);
13691351
if (strcmp(shell_command, "run-testcase") == 0) {
13701352
count += __ztest_run_test_suite(ptr, NULL, shuffle, 1, repeat_iter, param);
13711353
} else if (strcmp(shell_command, "run-testsuite") == 0) {

0 commit comments

Comments
 (0)