[components/utilities][add] 增加测试框架 utest 代码

Signed-off-by: MurphyZhao <d2014zjt@163.com>
This commit is contained in:
MurphyZhao
2018-11-30 16:12:35 +08:00
parent bcd591c5f5
commit 85d275b399
5 changed files with 380 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('utest', src, depend = [], CPPPATH = CPPPATH)
Return('group')