[components/utilities/utest] 移除不那么必要的日志接口 redefine

Signed-off-by: MurphyZhao <d2014zjt@163.com>
This commit is contained in:
MurphyZhao 2018-12-08 15:00:06 +08:00
parent 98b10877e7
commit bce7f85907
1 changed files with 0 additions and 16 deletions

View File

@ -80,22 +80,6 @@ typedef struct utest_tc_export *utest_tc_export_t;
*/
typedef void (*test_unit_func)(void);
/**
* TC_LOG_x
*
* @brief Log output interface used in test cases.
*
* @type TC_LOG_I Output info level log.
* @type TC_LOG_D Output debug level log.
* @type TC_LOG_E Output error level log.
* @type TC_LOG_W Output warning level log.
*
*/
#define TC_LOG_I(...) LOG_I(__VA_ARGS__)
#define TC_LOG_D(...) LOG_D(__VA_ARGS__)
#define TC_LOG_E(...) LOG_E(__VA_ARGS__)
#define TC_LOG_W(...) LOG_W(__VA_ARGS__)
/**
* utest_unit_run
*