!517 调整L0 部分测试套件编译不出来的问题

Merge pull request !517 from quxianfei/local_20240806_0002
This commit is contained in:
openharmony_ci 2024-08-06 07:43:42 +00:00 committed by Gitee
commit 20f4f5c6c2
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 7 additions and 3 deletions

View File

@ -25,7 +25,7 @@ WIFIIOT_ACTS_MODULES="${WIFIIOT_ACTS_MODULES},//test/xts/acts/communication_lite
WIFIIOT_ACTS_MODULES="${WIFIIOT_ACTS_MODULES},//test/xts/acts/commonlibrary_lite/file_hal:ActsUtilsFileTest"
WIFIIOT_ACTS_MODULES="${WIFIIOT_ACTS_MODULES},//test/xts/acts/startup_lite/syspara_hal:ActsParameterTest"
WIFIIOT_ACTS_MODULES="${WIFIIOT_ACTS_MODULES},//test/xts/acts/iothardware_lite/peripheral_hal:ActsWifiIotTest"
WIFIIOT_ACTS_MODULES="${WIFIIOT_ACTS_MODULES},//test/xts/acts/distributeddatamgr_lite/kv_store_hal:ActsKvStoreTest"
#WIFIIOT_ACTS_MODULES="${WIFIIOT_ACTS_MODULES},//test/xts/acts/distributeddatamgr_lite/kv_store_hal:ActsKvStoreTest"
WIFIIOT_ACTS_MODULES="${WIFIIOT_ACTS_MODULES},//test/xts/acts/security_lite/huks/liteos_m_adapter:ActsHuksHalFunctionTest"
WIFIIOT_ACTS_MODULES="${WIFIIOT_ACTS_MODULES},//test/xts/acts/hiviewdfx_lite/hilog_hal:ActsDfxFuncTest"
WIFIIOT_ACTS_MODULES="${WIFIIOT_ACTS_MODULES},//test/xts/acts/hiviewdfx_lite/hievent_hal:ActsHieventLiteTest"

View File

@ -72,7 +72,11 @@ _NO_FILTE_SUB_SYSTEM_LIST = [
"sstsutils",
"hdf",
"distributed_schedule",
"xts"
"xts",
"commonlibrary",
"communication",
"distributeddatamgr",
"startup"
]
@ -274,7 +278,7 @@ def check_component(path, components):
for component in components:
component_name = component.get("component", "")
if component_name != "kv_store_lite":
component_name = component_name.replace("_lite", "")
component_name = component_name.split('_lite')[0]
if component_name in path or "{}_hal".format(component_name) in path \
or "{}_posix".format(component_name) in path:
return True