[utestcases] add cpp11 base testcase.

This commit is contained in:
guozhanxin
2022-03-31 23:01:34 +08:00
committed by guo
parent ef7280826f
commit 1404186602
6 changed files with 92 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
Import('rtconfig')
from building import *
cwd = GetCurrentDir()
src = Split('''
thread_tc.cpp
''')
CPPPATH = [cwd]
group = DefineGroup('utestcases', src, depend = ['UTEST_CPP11_THREAD_TC'], CPPPATH = CPPPATH)
Return('group')