We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0af55e commit 5d29ce5Copy full SHA for 5d29ce5
1 file changed
components/utilities/utest/utest.c
@@ -82,7 +82,7 @@ static void utest_build_options(void)
82
83
if (tc_num >= RT_UTEST_MAX_OPTIONS - 1)
84
{
85
- LOG_W("Too many test cases (%d), only first %d will have completion", tc_num, RT_UTEST_MAX_OPTIONS - 1);
+ LOG_W("The current number of test cases is (%d). Please expand RT_UTEST_MAX_OPTIONS's size to at least (%d).", tc_num, tc_num + 1);
86
}
87
88
rt_memset(utest_testcase_run_msh_options, 0, sizeof(utest_testcase_run_msh_options));
0 commit comments