From 7533c12f66a45135096fc46d24e9120d0a9badd1 Mon Sep 17 00:00:00 2001 From: gong-guilin Date: Sun, 15 Jun 2025 10:50:38 +0800 Subject: [PATCH] add permission add_remote Signed-off-by: gong-guilin --- .../native/source/system_ability_manager.cpp | 22 +- .../source/system_ability_manager_stub.cpp | 20 + .../src/system_ability_mgr_stub_test.cpp | 13 +- .../system_ability_mgr_stub_unload_test.cpp | 12 + .../unittest/src/system_ability_mgr_test.cpp | 30 +- .../level0/case02_load001/listen_test.json | 2 +- .../level0/case03_get001/listen_test.json | 2 +- .../level0/case04_get002/listen_test.json | 2 +- .../case06_commonevent001/listen_test.json | 2 +- .../level0/case07_once002/listen_test.json | 2 +- .../level0/case08_once003/listen_test.json | 2 +- .../level0/case09_once004/listen_test.json | 2 +- .../case10_delay_time002/listen_test.json | 4 +- .../case11_delay_time003/listen_test.json | 4 +- .../case12_delay_time001/listen_test.json | 4 +- .../level0/case13_param001/listen_test.json | 2 +- .../case14_dysaprofile003/listen_test.json | 2 +- .../case15_dysaprofile004/listen_test.json | 2 +- .../case16_dysaprofile001/listen_test.json | 2 +- .../case17_dysaprofile002/listen_test.json | 2 +- .../level0/case18_switch001/listen_test.json | 2 +- .../level0/case19_switch002/listen_test.json | 2 +- .../level0/case20_timer003/listen_test.json | 2 +- .../level0/case21_add001/listen_test.json | 2 +- .../level0/case24_sub001/listen_test.json | 4 +- .../lifecycle_state_001/listen_test.json | 4 +- .../lifecycle_state_002/listen_test.json | 4 +- .../lifecycle_state_003/listen_test.json | 4 +- .../lifecycle_state_004/listen_test.json | 4 +- .../lifecycle_state_005/listen_test.json | 4 +- .../lifecycle_state_006/listen_test.json | 4 +- .../lifecycle_state_007/listen_test.json | 4 +- .../lifecycle_state_008/listen_test.json | 4 +- .../lifecycle_state_009/listen_test.json | 4 +- .../lifecycle_state_010/listen_test.json | 4 +- .../lifecycle_state_011/listen_test.json | 4 +- .../lifecycle_state_012/listen_test.json | 4 +- .../lifecycle_state_013/listen_test.json | 4 +- .../lifecycle_state_014/listen_test.json | 4 +- .../lifecycle_state_015/listen_test.json | 4 +- .../lifecycle_state_016/listen_test.json | 4 +- .../lifecycle_state_017/listen_test.json | 4 +- .../lifecycle_state_018/listen_test.json | 4 +- .../lifecycle_state_019/listen_test.json | 4 +- .../lifecycle_state_020/listen_test.json | 4 +- .../lifecycle_state_021/listen_test.json | 4 +- .../lifecycle_state_022/listen_test.json | 4 +- .../lifecycle_state_023/listen_test.json | 4 +- .../lifecycle_state_024/listen_test.json | 4 +- .../lifecycle_state_025/listen_test.json | 4 +- .../lifecycle_state_026/listen_test.json | 4 +- .../sub_samgr_sa_load_002/listen_test.json | 4 +- .../sub_samgr_sa_once_001/listen_test.json | 2 +- test/resource/profile/sa_profile.json | 2 +- .../profile/sa_profile_error_bootphase.json | 2 +- .../sa_profile_error_ondemanad_tag.json | 2 +- .../profile/sa_profile_error_said.json | 2 +- test/resource/profile/sa_profile_large.json | 436 +++++++++--------- .../profile/sa_profile_long_libpath.json | 2 +- .../profile/sa_profile_long_process.json | 2 +- 60 files changed, 381 insertions(+), 322 deletions(-) diff --git a/services/samgr/native/source/system_ability_manager.cpp b/services/samgr/native/source/system_ability_manager.cpp index 4dc5a7c9..82de9dd2 100644 --- a/services/samgr/native/source/system_ability_manager.cpp +++ b/services/samgr/native/source/system_ability_manager.cpp @@ -545,13 +545,7 @@ sptr SystemAbilityManager::CheckSystemAbility(int32_t systemAbili sptr SystemAbilityManager::CheckSystemAbility(int32_t systemAbilityId, const std::string& deviceId) { - CommonSaProfile saProfile; - bool ret = GetSaProfile(systemAbilityId, saProfile); - if (!ret) { - HILOGE("CheckSystemAbilityFromRpc SA:%{public}d not supported!", systemAbilityId); - return nullptr; - } - if (!saProfile.distributed) { + if (!IsDistributedSystemAbility(systemAbilityId)) { HILOGE("CheckSystemAbilityFromRpc SA:%{public}d not distributed!", systemAbilityId); return nullptr; } @@ -1063,6 +1057,11 @@ int32_t SystemAbilityManager::AddSystemAbility(int32_t systemAbilityId, const sp HILOGE("map size error, (Has been greater than %zu)", saSize); return ERR_INVALID_VALUE; } + if (extraProp.isDistributed != IsDistributedSystemAbility(systemAbilityId)) { + HILOGE("SA:%{public}d extraProp isDistributed:%{public}d different from saProfile", systemAbilityId, + extraProp.isDistributed); + return ERR_INVALID_VALUE; + } SAInfo saInfo = { ability, extraProp.isDistributed, extraProp.capability, Str16ToStr8(extraProp.permission) }; if (abilityMap_.count(systemAbilityId) > 0) { SystemAbilityInvalidateCache(systemAbilityId); @@ -1644,14 +1643,7 @@ bool SystemAbilityManager::LoadSystemAbilityFromRpc(const std::string& srcDevice HILOGW("LoadSystemAbility said or callback invalid!"); return false; } - CommonSaProfile saProfile; - bool ret = GetSaProfile(systemAbilityId, saProfile); - if (!ret) { - HILOGE("LoadSystemAbilityFromRpc SA:%{public}d not supported!", systemAbilityId); - return false; - } - - if (!saProfile.distributed) { + if (!IsDistributedSystemAbility(systemAbilityId)) { HILOGE("LoadSystemAbilityFromRpc SA:%{public}d not distributed!", systemAbilityId); return false; } diff --git a/services/samgr/native/source/system_ability_manager_stub.cpp b/services/samgr/native/source/system_ability_manager_stub.cpp index 1680b6cf..9afdb43f 100644 --- a/services/samgr/native/source/system_ability_manager_stub.cpp +++ b/services/samgr/native/source/system_ability_manager_stub.cpp @@ -87,6 +87,21 @@ namespace { #endif } + bool CheckAddRemoteSAPermission(const int32_t said) + { +#ifdef WITH_SELINUX + int64_t begin = OHOS::GetTickCount(); + auto callingSid = OHOS::IPCSkeleton::GetCallingSid(); + auto ret = selinuxChecker_->AddRemoteServiceCheck(callingSid, std::to_string(said)) == 0; + HILOG_SE_DEBUG(LOG_CORE, "AddRemoteServiceCheck callingSid:%{public}s,SA:%{public}d," + "ret:%{public}s,spend:%{public}" PRId64 "ms", callingSid.c_str(), said, + ret == true ? "suc" : "fail", OHOS::GetTickCount() - begin); + return ret; +#else + return true; // if not support selinux, not check selinux permission +#endif + } + bool CheckListSAPermission() { #ifdef WITH_SELINUX @@ -502,6 +517,11 @@ int32_t SystemAbilityManagerStub::AddSystemAbilityInner(MessageParcel& data, Mes KHILOGW("AddSystemAbilityExtraInner UnmarshalingSaExtraProp failed!"); return result; } + if (extraProp.isDistributed && !CheckAddRemoteSAPermission(systemAbilityId)) { + KHILOGE("CheckAddRemoteSAPermission selinux permission denied! SA:%{public}d,callSid:%{public}s", + systemAbilityId, OHOS::IPCSkeleton::GetCallingSid().c_str()); + return ERR_PERMISSION_DENIED; + } result = AddSystemAbility(systemAbilityId, object, extraProp); ret = reply.WriteInt32(result); if (!ret) { diff --git a/services/samgr/native/test/unittest/src/system_ability_mgr_stub_test.cpp b/services/samgr/native/test/unittest/src/system_ability_mgr_stub_test.cpp index 4ffbfae4..092fab5c 100644 --- a/services/samgr/native/test/unittest/src/system_ability_mgr_stub_test.cpp +++ b/services/samgr/native/test/unittest/src/system_ability_mgr_stub_test.cpp @@ -634,16 +634,17 @@ HWTEST_F(SystemAbilityMgrStubTest, AddSystemAbilityInner004, TestSize.Level3) /** * @tc.name: AddSystemAbilityInner005 - * @tc.desc: test AddSystemAbilityInner! + * @tc.desc: test AddSystemAbilityInner, ERR_OK. * @tc.type: FUNC */ HWTEST_F(SystemAbilityMgrStubTest, AddSystemAbilityInner005, TestSize.Level1) { sptr saMgr = SystemAbilityManager::GetInstance(); + saMgr->abilityStateScheduler_ = std::make_shared(); sptr testAbility(new SaStatusChangeMock()); EXPECT_TRUE(saMgr != nullptr); SystemAbilityManager::SAExtraProp extraProp; - bool isExist = false; + bool isDistributed = true; int32_t dumpFlags = 0; std::u16string capability = u"capability"; std::u16string permission = u"permission"; @@ -651,12 +652,18 @@ HWTEST_F(SystemAbilityMgrStubTest, AddSystemAbilityInner005, TestSize.Level1) MessageParcel reply; data.WriteInt32(SAID); data.WriteRemoteObject(testAbility); - data.WriteBool(isExist); + data.WriteBool(isDistributed); data.WriteInt32(dumpFlags); data.WriteString16(capability); data.WriteString16(permission); + CommonSaProfile saProfile; + saProfile.process = u"test"; + saProfile.distributed = true; + saProfile.saId = SAID; + saMgr->saProfileMap_[SAID] = saProfile; int32_t result = saMgr->AddSystemAbilityInner(data, reply); EXPECT_EQ(result, ERR_OK); + saMgr->saProfileMap_.erase(SAID); } /** diff --git a/services/samgr/native/test/unittest/src/system_ability_mgr_stub_unload_test.cpp b/services/samgr/native/test/unittest/src/system_ability_mgr_stub_unload_test.cpp index e025700e..e48b2a04 100644 --- a/services/samgr/native/test/unittest/src/system_ability_mgr_stub_unload_test.cpp +++ b/services/samgr/native/test/unittest/src/system_ability_mgr_stub_unload_test.cpp @@ -381,8 +381,14 @@ HWTEST_F(SystemAbilityMgrStubUnLoadTest, UnloadSystemAbilityInner002, TestSize.L MessageParcel data; MessageParcel reply; data.WriteInt32(SAID); + CommonSaProfile saProfile; + saProfile.process = u"test"; + saProfile.distributed = true; + saProfile.saId = SAID; + saMgr->saProfileMap_[SAID] = saProfile; int32_t result = saMgr->UnloadSystemAbilityInner(data, reply); EXPECT_EQ(result, INVALID_CALL_PROC); + saMgr->saProfileMap_.erase(SAID); } #endif @@ -411,8 +417,14 @@ HWTEST_F(SystemAbilityMgrStubUnLoadTest, UnloadSystemAbility002, TestSize.Level3 { sptr saMgr = SystemAbilityManager::GetInstance(); EXPECT_TRUE(saMgr != nullptr); + CommonSaProfile saProfile; + saProfile.process = u"test"; + saProfile.distributed = true; + saProfile.saId = SAID; + saMgr->saProfileMap_[SAID] = saProfile; int32_t result = saMgr->UnloadSystemAbility(SAID); EXPECT_EQ(result, INVALID_CALL_PROC); + saMgr->saProfileMap_.erase(SAID); } #endif diff --git a/services/samgr/native/test/unittest/src/system_ability_mgr_test.cpp b/services/samgr/native/test/unittest/src/system_ability_mgr_test.cpp index e16ea845..d17794e4 100644 --- a/services/samgr/native/test/unittest/src/system_ability_mgr_test.cpp +++ b/services/samgr/native/test/unittest/src/system_ability_mgr_test.cpp @@ -189,7 +189,7 @@ HWTEST_F(SystemAbilityMgrTest, AddSystemAbility004, TestSize.Level1) /** * @tc.name: AddSystemAbility005 - * @tc.desc: add system ability with validated capability. + * @tc.desc: add system ability, saExtraProp diff from saProfileMap_. * @tc.type: FUNC */ HWTEST_F(SystemAbilityMgrTest, AddSystemAbility005, TestSize.Level1) @@ -201,7 +201,35 @@ HWTEST_F(SystemAbilityMgrTest, AddSystemAbility005, TestSize.Level1) \"ccc\":\"this is string\", \"ddd\":\"[aa, bb, cc, dd]\", \"eee\":5.60, \"fff\":4545, \"ggg\":true}}"; ISystemAbilityManager::SAExtraProp saExtraProp(true, ISystemAbilityManager::DUMP_FLAG_PRIORITY_DEFAULT, capability, u""); + CommonSaProfile saProfile; + saProfile.process = u"test"; + saProfile.distributed = false; + saProfile.saId = systemAbilityId; + saMgr->saProfileMap_[systemAbilityId] = saProfile; int32_t ret = saMgr->AddSystemAbility(systemAbilityId, new TestTransactionService(), saExtraProp); + saMgr->saProfileMap_.erase(systemAbilityId); + saMgr->RemoveSystemAbility(systemAbilityId); + EXPECT_EQ(ret, ERR_INVALID_VALUE); +} + +/** + * @tc.name: AddSystemAbility006 + * @tc.desc: add system ability, ERR_OK. + * @tc.type: FUNC + */ +HWTEST_F(SystemAbilityMgrTest, AddSystemAbility006, TestSize.Level1) +{ + sptr saMgr = new SystemAbilityManager; + saMgr->abilityStateScheduler_ = std::make_shared(); + CommonSaProfile saProfile; + saProfile.process = u"test"; + saProfile.distributed = true; + saProfile.saId = SAID; + saMgr->saProfileMap_[SAID] = saProfile; + ISystemAbilityManager::SAExtraProp extraProp(true, DUMP_FLAG_PRIORITY_DEFAULT, u"", u""); + int32_t ret = saMgr->AddSystemAbility(SAID, new TestTransactionService(), extraProp); + saMgr->saProfileMap_.erase(SAID); + saMgr->RemoveSystemAbility(SAID); EXPECT_EQ(ret, ERR_OK); } diff --git a/test/autotest/resource/level0/case02_load001/listen_test.json b/test/autotest/resource/level0/case02_load001/listen_test.json index 35178f0a..dcd20986 100644 --- a/test/autotest/resource/level0/case02_load001/listen_test.json +++ b/test/autotest/resource/level0/case02_load001/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "commonevent": [ diff --git a/test/autotest/resource/level0/case03_get001/listen_test.json b/test/autotest/resource/level0/case03_get001/listen_test.json index 9d293478..fc06a64e 100644 --- a/test/autotest/resource/level0/case03_get001/listen_test.json +++ b/test/autotest/resource/level0/case03_get001/listen_test.json @@ -6,7 +6,7 @@ "libpath": "liblisten_test.z.so", "run-on-create": false, "auto-restart": true, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "allow-update": true, diff --git a/test/autotest/resource/level0/case04_get002/listen_test.json b/test/autotest/resource/level0/case04_get002/listen_test.json index 3e4f549f..c6a27589 100644 --- a/test/autotest/resource/level0/case04_get002/listen_test.json +++ b/test/autotest/resource/level0/case04_get002/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "commonevent": [ diff --git a/test/autotest/resource/level0/case06_commonevent001/listen_test.json b/test/autotest/resource/level0/case06_commonevent001/listen_test.json index 8c3d5d1a..80203ead 100644 --- a/test/autotest/resource/level0/case06_commonevent001/listen_test.json +++ b/test/autotest/resource/level0/case06_commonevent001/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { }, diff --git a/test/autotest/resource/level0/case07_once002/listen_test.json b/test/autotest/resource/level0/case07_once002/listen_test.json index b6687e93..c1ac2d11 100644 --- a/test/autotest/resource/level0/case07_once002/listen_test.json +++ b/test/autotest/resource/level0/case07_once002/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { }, diff --git a/test/autotest/resource/level0/case08_once003/listen_test.json b/test/autotest/resource/level0/case08_once003/listen_test.json index 16078e3f..65b19c84 100644 --- a/test/autotest/resource/level0/case08_once003/listen_test.json +++ b/test/autotest/resource/level0/case08_once003/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "param": [ diff --git a/test/autotest/resource/level0/case09_once004/listen_test.json b/test/autotest/resource/level0/case09_once004/listen_test.json index e707077b..82ccf365 100644 --- a/test/autotest/resource/level0/case09_once004/listen_test.json +++ b/test/autotest/resource/level0/case09_once004/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "commonevent": [ diff --git a/test/autotest/resource/level0/case10_delay_time002/listen_test.json b/test/autotest/resource/level0/case10_delay_time002/listen_test.json index 09871557..ab5a42a8 100644 --- a/test/autotest/resource/level0/case10_delay_time002/listen_test.json +++ b/test/autotest/resource/level0/case10_delay_time002/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "commonevent": [ @@ -27,7 +27,7 @@ "name": 1499, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "commonevent": [ diff --git a/test/autotest/resource/level0/case11_delay_time003/listen_test.json b/test/autotest/resource/level0/case11_delay_time003/listen_test.json index 50977392..6cc5baa1 100644 --- a/test/autotest/resource/level0/case11_delay_time003/listen_test.json +++ b/test/autotest/resource/level0/case11_delay_time003/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "commonevent": [ @@ -27,7 +27,7 @@ "name": 1499, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "commonevent": [ diff --git a/test/autotest/resource/level0/case12_delay_time001/listen_test.json b/test/autotest/resource/level0/case12_delay_time001/listen_test.json index fae50733..f2b45539 100644 --- a/test/autotest/resource/level0/case12_delay_time001/listen_test.json +++ b/test/autotest/resource/level0/case12_delay_time001/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "commonevent": [ @@ -27,7 +27,7 @@ "name": 1499, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "commonevent": [ diff --git a/test/autotest/resource/level0/case13_param001/listen_test.json b/test/autotest/resource/level0/case13_param001/listen_test.json index 1bc18a11..21484926 100644 --- a/test/autotest/resource/level0/case13_param001/listen_test.json +++ b/test/autotest/resource/level0/case13_param001/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "param": [ diff --git a/test/autotest/resource/level0/case14_dysaprofile003/listen_test.json b/test/autotest/resource/level0/case14_dysaprofile003/listen_test.json index d4626c8f..9b656e1d 100644 --- a/test/autotest/resource/level0/case14_dysaprofile003/listen_test.json +++ b/test/autotest/resource/level0/case14_dysaprofile003/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "allow-update": true, diff --git a/test/autotest/resource/level0/case15_dysaprofile004/listen_test.json b/test/autotest/resource/level0/case15_dysaprofile004/listen_test.json index d4626c8f..9b656e1d 100644 --- a/test/autotest/resource/level0/case15_dysaprofile004/listen_test.json +++ b/test/autotest/resource/level0/case15_dysaprofile004/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "allow-update": true, diff --git a/test/autotest/resource/level0/case16_dysaprofile001/listen_test.json b/test/autotest/resource/level0/case16_dysaprofile001/listen_test.json index d4626c8f..9b656e1d 100644 --- a/test/autotest/resource/level0/case16_dysaprofile001/listen_test.json +++ b/test/autotest/resource/level0/case16_dysaprofile001/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "allow-update": true, diff --git a/test/autotest/resource/level0/case17_dysaprofile002/listen_test.json b/test/autotest/resource/level0/case17_dysaprofile002/listen_test.json index d4626c8f..9b656e1d 100644 --- a/test/autotest/resource/level0/case17_dysaprofile002/listen_test.json +++ b/test/autotest/resource/level0/case17_dysaprofile002/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "allow-update": true, diff --git a/test/autotest/resource/level0/case18_switch001/listen_test.json b/test/autotest/resource/level0/case18_switch001/listen_test.json index 49cc70c5..9b21dbab 100644 --- a/test/autotest/resource/level0/case18_switch001/listen_test.json +++ b/test/autotest/resource/level0/case18_switch001/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "settingswitch": [ diff --git a/test/autotest/resource/level0/case19_switch002/listen_test.json b/test/autotest/resource/level0/case19_switch002/listen_test.json index aa314847..e2d60a38 100644 --- a/test/autotest/resource/level0/case19_switch002/listen_test.json +++ b/test/autotest/resource/level0/case19_switch002/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "settingswitch": [ diff --git a/test/autotest/resource/level0/case20_timer003/listen_test.json b/test/autotest/resource/level0/case20_timer003/listen_test.json index d1745fa5..3b2e069e 100644 --- a/test/autotest/resource/level0/case20_timer003/listen_test.json +++ b/test/autotest/resource/level0/case20_timer003/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "timedevent": [ diff --git a/test/autotest/resource/level0/case21_add001/listen_test.json b/test/autotest/resource/level0/case21_add001/listen_test.json index ad8fdf06..474588e0 100644 --- a/test/autotest/resource/level0/case21_add001/listen_test.json +++ b/test/autotest/resource/level0/case21_add001/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "commonevent": [ diff --git a/test/autotest/resource/level0/case24_sub001/listen_test.json b/test/autotest/resource/level0/case24_sub001/listen_test.json index 87c91a16..ab0a2723 100644 --- a/test/autotest/resource/level0/case24_sub001/listen_test.json +++ b/test/autotest/resource/level0/case24_sub001/listen_test.json @@ -5,14 +5,14 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump_level": 1 }, { "name": 1499, "libpath": "libtest_audio_ability.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_001/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_001/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_001/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_001/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_002/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_002/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_002/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_002/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_003/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_003/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_003/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_003/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_004/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_004/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_004/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_004/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_005/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_005/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_005/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_005/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_006/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_006/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_006/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_006/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_007/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_007/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_007/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_007/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_008/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_008/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_008/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_008/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_009/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_009/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_009/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_009/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_010/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_010/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_010/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_010/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_011/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_011/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_011/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_011/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_012/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_012/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_012/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_012/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_013/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_013/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_013/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_013/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_014/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_014/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_014/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_014/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_015/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_015/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_015/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_015/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_016/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_016/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_016/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_016/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_017/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_017/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_017/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_017/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_018/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_018/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_018/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_018/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_019/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_019/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_019/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_019/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_020/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_020/listen_test.json index b6e3c520..43cd04c1 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_020/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_020/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "libmock_ondemand_ability_a.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_021/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_021/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_021/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_021/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_022/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_022/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_022/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_022/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_023/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_023/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_023/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_023/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_024/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_024/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_024/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_024/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_025/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_025/listen_test.json index bb786071..c9d36145 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_025/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_025/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ @@ -28,7 +28,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/lifecycle/lifecycle_state_026/listen_test.json b/test/autotest/resource/level1/lifecycle/lifecycle_state_026/listen_test.json index 7403a459..852ceda0 100644 --- a/test/autotest/resource/level1/lifecycle/lifecycle_state_026/listen_test.json +++ b/test/autotest/resource/level1/lifecycle/lifecycle_state_026/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "settingswitch": [ @@ -36,7 +36,7 @@ "name": 1497, "libpath": "libtest_audio_ability.z.so", "run-on-create": false, - "distributed": true, + "distributed": false, "dump_level": 1 } ] diff --git a/test/autotest/resource/level1/networking/sub_samgr_sa_load_002/listen_test.json b/test/autotest/resource/level1/networking/sub_samgr_sa_load_002/listen_test.json index f47734d0..38a2ee63 100644 --- a/test/autotest/resource/level1/networking/sub_samgr_sa_load_002/listen_test.json +++ b/test/autotest/resource/level1/networking/sub_samgr_sa_load_002/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "commonevent": [ @@ -27,7 +27,7 @@ "name": 1499, "libpath": "libtest_audio_ability.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "commonevent": [ diff --git a/test/autotest/resource/level1/networking/sub_samgr_sa_once_001/listen_test.json b/test/autotest/resource/level1/networking/sub_samgr_sa_once_001/listen_test.json index 3e59eae2..611e05f1 100644 --- a/test/autotest/resource/level1/networking/sub_samgr_sa_once_001/listen_test.json +++ b/test/autotest/resource/level1/networking/sub_samgr_sa_once_001/listen_test.json @@ -5,7 +5,7 @@ "name": 1494, "libpath": "liblisten_test.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump_level": 1, "start-on-demand": { "deviceonline": [ diff --git a/test/resource/profile/sa_profile.json b/test/resource/profile/sa_profile.json index a4ba34a7..bb5f5d01 100644 --- a/test/resource/profile/sa_profile.json +++ b/test/resource/profile/sa_profile.json @@ -5,7 +5,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": { "deviceonline": [ diff --git a/test/resource/profile/sa_profile_error_bootphase.json b/test/resource/profile/sa_profile_error_bootphase.json index c3b97b3a..bc0bfa65 100644 --- a/test/resource/profile/sa_profile_error_bootphase.json +++ b/test/resource/profile/sa_profile_error_bootphase.json @@ -5,7 +5,7 @@ "name": 1411, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "bootphase": "abc" } diff --git a/test/resource/profile/sa_profile_error_ondemanad_tag.json b/test/resource/profile/sa_profile_error_ondemanad_tag.json index c6afca0e..a1a261db 100644 --- a/test/resource/profile/sa_profile_error_ondemanad_tag.json +++ b/test/resource/profile/sa_profile_error_ondemanad_tag.json @@ -5,7 +5,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": { "deviceonline": [ diff --git a/test/resource/profile/sa_profile_error_said.json b/test/resource/profile/sa_profile_error_said.json index b17bab7b..b5e7fa6c 100644 --- a/test/resource/profile/sa_profile_error_said.json +++ b/test/resource/profile/sa_profile_error_said.json @@ -5,7 +5,7 @@ "name": 16777216, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1 } ] diff --git a/test/resource/profile/sa_profile_large.json b/test/resource/profile/sa_profile_large.json index 86d0b15c..aea34694 100644 --- a/test/resource/profile/sa_profile_large.json +++ b/test/resource/profile/sa_profile_large.json @@ -5,7 +5,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -25,7 +25,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -38,7 +38,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -51,7 +51,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -64,7 +64,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -77,7 +77,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -90,7 +90,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -103,7 +103,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -116,7 +116,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -129,7 +129,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -142,7 +142,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -155,7 +155,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -168,7 +168,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -181,7 +181,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -194,7 +194,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -207,7 +207,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -220,7 +220,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -233,7 +233,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -246,7 +246,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -259,7 +259,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -272,7 +272,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -285,7 +285,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -298,7 +298,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -311,7 +311,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -324,7 +324,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -337,7 +337,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -350,7 +350,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -363,7 +363,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -376,7 +376,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -389,7 +389,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -402,7 +402,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -415,7 +415,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -428,7 +428,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -441,7 +441,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -454,7 +454,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -467,7 +467,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -480,7 +480,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -493,7 +493,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -506,7 +506,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -519,7 +519,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -532,7 +532,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -545,7 +545,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -558,7 +558,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -571,7 +571,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -584,7 +584,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -597,7 +597,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -610,7 +610,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -623,7 +623,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -636,7 +636,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -649,7 +649,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -662,7 +662,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -675,7 +675,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -688,7 +688,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -701,7 +701,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -714,7 +714,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -727,7 +727,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -740,7 +740,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -753,7 +753,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -766,7 +766,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -779,7 +779,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -792,7 +792,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -805,7 +805,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -818,7 +818,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -831,7 +831,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -844,7 +844,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -857,7 +857,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -870,7 +870,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -883,7 +883,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -896,7 +896,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -909,7 +909,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -922,7 +922,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -935,7 +935,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -948,7 +948,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -961,7 +961,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -974,7 +974,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -987,7 +987,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1000,7 +1000,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1013,7 +1013,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1026,7 +1026,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1039,7 +1039,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1052,7 +1052,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1065,7 +1065,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1078,7 +1078,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1091,7 +1091,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1104,7 +1104,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1117,7 +1117,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1130,7 +1130,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1143,7 +1143,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1156,7 +1156,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1169,7 +1169,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1182,7 +1182,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1195,7 +1195,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1208,7 +1208,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1221,7 +1221,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1234,7 +1234,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1247,7 +1247,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1260,7 +1260,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1273,7 +1273,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1286,7 +1286,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1299,7 +1299,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1312,7 +1312,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1325,7 +1325,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1338,7 +1338,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1351,7 +1351,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1364,7 +1364,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1377,7 +1377,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1390,7 +1390,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1403,7 +1403,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1416,7 +1416,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1429,7 +1429,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1442,7 +1442,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1455,7 +1455,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1468,7 +1468,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1481,7 +1481,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1494,7 +1494,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1507,7 +1507,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1520,7 +1520,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1533,7 +1533,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1546,7 +1546,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1559,7 +1559,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1572,7 +1572,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1585,7 +1585,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1598,7 +1598,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1611,7 +1611,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1624,7 +1624,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1637,7 +1637,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1650,7 +1650,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1663,7 +1663,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1676,7 +1676,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1689,7 +1689,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1702,7 +1702,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1715,7 +1715,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1728,7 +1728,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1741,7 +1741,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1754,7 +1754,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1767,7 +1767,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1780,7 +1780,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1793,7 +1793,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1806,7 +1806,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1819,7 +1819,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1832,7 +1832,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1845,7 +1845,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1858,7 +1858,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1871,7 +1871,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1884,7 +1884,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1897,7 +1897,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1910,7 +1910,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1923,7 +1923,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1936,7 +1936,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1949,7 +1949,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1962,7 +1962,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1975,7 +1975,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -1988,7 +1988,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2001,7 +2001,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2014,7 +2014,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2027,7 +2027,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2040,7 +2040,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2053,7 +2053,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2066,7 +2066,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2079,7 +2079,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2092,7 +2092,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2105,7 +2105,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2118,7 +2118,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2131,7 +2131,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2144,7 +2144,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2157,7 +2157,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2170,7 +2170,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2183,7 +2183,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2196,7 +2196,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2209,7 +2209,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2222,7 +2222,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2235,7 +2235,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2248,7 +2248,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2261,7 +2261,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2274,7 +2274,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2287,7 +2287,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2300,7 +2300,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2313,7 +2313,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2326,7 +2326,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2339,7 +2339,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2352,7 +2352,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2365,7 +2365,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2378,7 +2378,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2391,7 +2391,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2404,7 +2404,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2417,7 +2417,7 @@ "name": 1403, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2430,7 +2430,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2443,7 +2443,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2456,7 +2456,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2469,7 +2469,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2482,7 +2482,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2495,7 +2495,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2508,7 +2508,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2521,7 +2521,7 @@ "name": 1404, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2534,7 +2534,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2547,7 +2547,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2560,7 +2560,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2573,7 +2573,7 @@ "name": 14012, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2586,7 +2586,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2599,7 +2599,7 @@ "name": 1405, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2612,7 +2612,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2625,7 +2625,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2638,7 +2638,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2651,7 +2651,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2664,7 +2664,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2677,7 +2677,7 @@ "name": 1409, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2690,7 +2690,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2703,7 +2703,7 @@ "name": 1408, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2716,7 +2716,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2729,7 +2729,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2742,7 +2742,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2755,7 +2755,7 @@ "name": 1406, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2768,7 +2768,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2781,7 +2781,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2794,7 +2794,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2807,7 +2807,7 @@ "name": 1402, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2820,7 +2820,7 @@ "name": 14099, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { @@ -2833,7 +2833,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": [ { diff --git a/test/resource/profile/sa_profile_long_libpath.json b/test/resource/profile/sa_profile_long_libpath.json index 94d554f9..8ebcae13 100644 --- a/test/resource/profile/sa_profile_long_libpath.json +++ b/test/resource/profile/sa_profile_long_libpath.json @@ -5,7 +5,7 @@ "name": 1401, "libpath": "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": { "deviceonline": [ diff --git a/test/resource/profile/sa_profile_long_process.json b/test/resource/profile/sa_profile_long_process.json index b75f38c8..6990fb99 100644 --- a/test/resource/profile/sa_profile_long_process.json +++ b/test/resource/profile/sa_profile_long_process.json @@ -5,7 +5,7 @@ "name": 1401, "libpath": "libdistributed_ability_manager_svr.z.so", "run-on-create": true, - "distributed": true, + "distributed": false, "dump-level": 1, "start-on-demand": { "deviceonline": [ -- Gitee