From 7edadad128b8e92e5d514a5b7f7534ac825e3c96 Mon Sep 17 00:00:00 2001 From: qu-xianfei Date: Tue, 6 Aug 2024 12:10:55 +0800 Subject: [PATCH 1/2] modify L0 Signed-off-by: qu-xianfei --- lite/build.sh | 2 +- lite/build/utils.py | 8 ++++++-- 2 files changed, 7 insertions(+), 3 deletions(-) mode change 100755 => 100644 lite/build.sh diff --git a/lite/build.sh b/lite/build.sh old mode 100755 new mode 100644 index 078f132..6c7e4e7 --- a/lite/build.sh +++ b/lite/build.sh @@ -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" diff --git a/lite/build/utils.py b/lite/build/utils.py index dd97af3..f8b093d 100644 --- a/lite/build/utils.py +++ b/lite/build/utils.py @@ -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 From bf820845c20876ba67d8339f0881c889fcbaabab Mon Sep 17 00:00:00 2001 From: qu-xianfei Date: Tue, 6 Aug 2024 14:07:22 +0800 Subject: [PATCH 2/2] modify L0 Signed-off-by: qu-xianfei --- lite/build.sh | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 lite/build.sh diff --git a/lite/build.sh b/lite/build.sh old mode 100644 new mode 100755