Skip to content

Commit e23146d

Browse files
committed
fix[utest]: Improvement of annotation description
1 parent a0af55e commit e23146d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/utilities/utest/utest.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ static void utest_build_options(void)
8282

8383
if (tc_num >= RT_UTEST_MAX_OPTIONS - 1)
8484
{
85-
LOG_W("Too many test cases (%d), only first %d will have completion", tc_num, RT_UTEST_MAX_OPTIONS - 1);
85+
LOG_W("The current number of test cases is (%d), which exceeds the array length (%d). Please expand the array capacity.", tc_num, RT_UTEST_MAX_OPTIONS - 1);
8686
}
8787

8888
rt_memset(utest_testcase_run_msh_options, 0, sizeof(utest_testcase_run_msh_options));

0 commit comments

Comments
 (0)