Skip to content

Commit 0b5d5b9

Browse files
committed
[utest][cpp]rename thread_tc.cpp to tc_thread.cpp.
1 parent d7dded1 commit 0b5d5b9

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

examples/utest/testcases/cpp11/SConscript

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ Import('rtconfig')
22
from building import *
33

44
cwd = GetCurrentDir()
5-
src = Split('''
6-
thread_tc.cpp
7-
''')
8-
5+
src = []
96
CPPPATH = [cwd]
107

11-
group = DefineGroup('utestcases', src, depend = ['UTEST_CPP11_THREAD_TC'], CPPPATH = CPPPATH)
8+
if GetDepend('RT_UTEST_USING_ALL_CASES') or GetDepend('UTEST_CPP11_THREAD_TC'):
9+
src += Glob('tc_*.cpp')
10+
11+
group = DefineGroup('utestcases', src, depend = ['RT_USING_UTESTCASES', 'RT_USING_CPLUSPLUS'], CPPPATH = CPPPATH)
1212

1313
Return('group')
14+
File renamed without changes.

0 commit comments

Comments
 (0)