提交 b66c5ee0 编写于 作者: G Grissiom

TC: always print the test result despite the wait time

上级 a7c4d07f
......@@ -50,11 +50,6 @@ void tc_thread_entry(void* parameter)
_tc_cleanup();
_tc_cleanup = RT_NULL;
}
if (_tc_stat & TC_STAT_FAILED)
rt_kprintf("TestCase[%s] failed\n", _tc_current);
else
rt_kprintf("TestCase[%s] passed\n", _tc_current);
}
else
{
......@@ -65,6 +60,11 @@ void tc_thread_entry(void* parameter)
_tc_cleanup = RT_NULL;
}
}
if (_tc_stat & TC_STAT_FAILED)
rt_kprintf("TestCase[%s] failed\n", _tc_current);
else
rt_kprintf("TestCase[%s] passed\n", _tc_current);
}
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册