增加dcts

Signed-off-by: songdawei <songdawei1@huawei.com>
This commit is contained in:
songdawei 2022-03-11 02:48:28 +00:00
parent d91b06b5e1
commit 2fe3f6fad5
3 changed files with 5 additions and 1 deletions

View File

@ -10,7 +10,8 @@
"system_kits": [],
"test_list": [
"//test/xts/acts:acts",
"//test/xts/hats:hats"
"//test/xts/hats:hats",
"//test/xts/dcts:dcts"
]
},
"ivi_tests": {

View File

@ -22,6 +22,7 @@ declare_args() {
ACTS_ROOT = "//test/xts/acts"
HATS_ROOT = "//test/xts/hats"
HITS_ROOT = "//test/xts/hits"
DCTS_ROOT = "//test/xts/dcts"
# create testsuite archive is time-consuming, do it only if necessary
make_archive = false

View File

@ -43,6 +43,8 @@ def filter_modules(subsystem_data_file, test_packages):
rslash_index = dep.find('/acts')
if rslash_index < 0:
rslash_index = dep.find('/hats')
if rslash_index < 0:
rslash_index = dep.find('/dcts')
colon_index = dep.find(':')
if rslash_index < 0 or colon_index < 0:
continue