32 lines
605 B
C
32 lines
605 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2018-11-19 MurphyZhao the first version
|
|
*/
|
|
|
|
#ifndef __UTEST_LOG_H__
|
|
#define __UTEST_LOG_H__
|
|
|
|
#define UTEST_DEBUG
|
|
|
|
#undef DBG_SECTION_NAME
|
|
#undef DBG_LEVEL
|
|
#undef DBG_COLOR
|
|
#undef DBG_ENABLE
|
|
|
|
#define DBG_ENABLE
|
|
#define DBG_SECTION_NAME "testcase"
|
|
#ifdef UTEST_DEBUG
|
|
#define DBG_LEVEL DBG_LOG
|
|
#else
|
|
#define DBG_LEVEL DBG_INFO
|
|
#endif
|
|
#define DBG_COLOR
|
|
#include <rtdbg.h>
|
|
|
|
#endif /* __UTEST_LOG_H__ */
|