diff --git a/distributeddatamgr/BUILD.gn b/distributeddatamgr/BUILD.gn index becbbf838e7932c1f19bd889a95f0b49a78561f3..4fe3c49854a5958f426d4b98a60e397a38564b82 100644 --- a/distributeddatamgr/BUILD.gn +++ b/distributeddatamgr/BUILD.gn @@ -16,8 +16,8 @@ group("distributeddatamgr") { testonly = true if (is_standard_system) { deps = [ - "crossplatform/relationalstoreetstest:relationalStore_ets_test", "crossplatform/preferencesetstest:preferences_ets_test", + "crossplatform/relationalstoreetstest:relationalStore_ets_test", "dataObjectjstest/hap:dataObject_js_test", "dataSharejstest/hap:dataShare_js_test", "distributedKVStoretest:distributedKVStoretest", diff --git a/distributeddatamgr/crossplatform/preferencesetstest/BUILD.gn b/distributeddatamgr/crossplatform/preferencesetstest/BUILD.gn index da8b7a1399a08ac9331f917b3fd7086df3c09be0..c06922b85c8d3d5c5d2e1c7950c0b526b0e47e4f 100644 --- a/distributeddatamgr/crossplatform/preferencesetstest/BUILD.gn +++ b/distributeddatamgr/crossplatform/preferencesetstest/BUILD.gn @@ -21,6 +21,7 @@ ohos_js_hap_suite("preferences_ets_test") { ] ets2abc = true certificate_profile = "./signature/openharmony_sx.p7b" + # hap_name: HAP的名字,可选,默认为目标名 hap_name = "preferences_ets_test" subsystem_name = "distributeddatamgr" @@ -29,6 +30,7 @@ ohos_js_hap_suite("preferences_ets_test") { ohos_app_scope("windowStage_app_profile") { # app_profile: HAP的AppScope中的app.json,只在Stage模型下使用 app_profile = "AppScope/app.json" + # sources: 资源文件路径 sources = [ "AppScope/resources" ] } @@ -39,8 +41,10 @@ ohos_js_assets("windowStage_js_assets") { ohos_resources("windowStage_resources") { # sources: 资源文件路径 sources = [ "src/main/resources" ] + # deps: 当前目标的依赖 deps = [ ":windowStage_app_profile" ] + # hap_profile: HAP的config.json,Stage模型对应module.json hap_profile = "src/main/module.json" -} \ No newline at end of file +} diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/BUILD.gn b/distributeddatamgr/crossplatform/relationalstoreetstest/BUILD.gn index 4fc191cdc6facbd2af1d9504e61c17f792becbcf..b13f6227a095b65946291cee4ebf4acf28779a4d 100644 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/BUILD.gn +++ b/distributeddatamgr/crossplatform/relationalstoreetstest/BUILD.gn @@ -21,6 +21,7 @@ ohos_js_hap_suite("relationalStore_ets_test") { ] ets2abc = true certificate_profile = "./signature/openharmony_sx.p7b" + # hap_name: HAP的名字,可选,默认为目标名 hap_name = "relationalStore_ets_test" subsystem_name = "distributeddatamgr" @@ -29,6 +30,7 @@ ohos_js_hap_suite("relationalStore_ets_test") { ohos_app_scope("windowStage_app_profile") { # app_profile: HAP的AppScope中的app.json,只在Stage模型下使用 app_profile = "AppScope/app.json" + # sources: 资源文件路径 sources = [ "AppScope/resources" ] } @@ -39,8 +41,10 @@ ohos_js_assets("windowStage_js_assets") { ohos_resources("windowStage_resources") { # sources: 资源文件路径 sources = [ "src/main/resources" ] + # deps: 当前目标的依赖 deps = [ ":windowStage_app_profile" ] + # hap_profile: HAP的config.json,Stage模型对应module.json hap_profile = "src/main/module.json" -} \ No newline at end of file +} diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/ets/test/RdbStoreBackupRestore.test.ets b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/ets/test/RdbStoreBackupRestore.test.ets index ca1db29b5147a6f045d975ad0921db90b975acc1..27c14ade6b7e096201d97456f3620c54097766ca 100644 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/ets/test/RdbStoreBackupRestore.test.ets +++ b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/ets/test/RdbStoreBackupRestore.test.ets @@ -212,29 +212,29 @@ export default function RdbStoreBackupRestoreCallbackTest() { console.info(TAG + "************* testRdbStoreBackup001 end *************"); }); - // /** - // * @tc.number : TEST_RDB_STORE_BACKUP_002 - // * @tc.name : testRdbStoreBackup002 - // * @tc.desc : RdbStore backup callback test - // * @tc.size : MediumTest - // * @tc.type : Function - // * @tc.level : Level 2 - // */ - // it("testRdbStoreBackup002", 0, async function (done) { - // console.info(TAG + "************* testRdbStoreBackup002 start *************"); - // try { - // RdbStore.backup(STORE_CONFIG.name, async (err) => { - // console.info(TAG + "backup err ttt: " + err.message + "code: " + err.code); - // expect(err.code == 14800011 && err.message == "Failed to open database by database corrupted").assertTrue(); - // done(); - // }); - // } catch (errInfo) { - // console.info(TAG + "testRdbStoreBackup002 error: " + errInfo); - // expect().assertFail(); - // done(); - // } - // console.info(TAG + "************* testRdbStoreBackup002 end *************"); - // }); + /** + * @tc.number : TEST_RDB_STORE_BACKUP_002 + * @tc.name : testRdbStoreBackup002 + * @tc.desc : RdbStore backup callback test + * @tc.size : MediumTest + * @tc.type : Function + * @tc.level : Level 2 + */ + it("testRdbStoreBackup002", 0, async function (done) { + console.info(TAG + "************* testRdbStoreBackup002 start *************"); + try { + RdbStore.backup(STORE_CONFIG.name, async (err) => { + console.info(TAG + "backup err ttt: " + err.message + "code: " + err.code); + expect(err.code == 14800011 && err.message == "Failed to open database by database corrupted").assertTrue(); + done(); + }); + } catch (errInfo) { + console.info(TAG + "testRdbStoreBackup002 error: " + errInfo); + expect().assertFail(); + done(); + } + console.info(TAG + "************* testRdbStoreBackup002 end *************"); + }); /** * @tc.number : TEST_RDB_STORE_BACKUP_003 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/ets/test/RdbStoreUpdate.test.ets b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/ets/test/RdbStoreUpdate.test.ets index 4c8eb3e470754b1eda668ef0839bb67ed1ad3342..10c21e97b74a82dc614f9312091eef080a9ff670 100644 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/ets/test/RdbStoreUpdate.test.ets +++ b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/ets/test/RdbStoreUpdate.test.ets @@ -136,7 +136,7 @@ export default function rdbStoreUpdateTest() { rdbStore.update(emptyBucket, predicates, async (err, rows) => { if (err) { console.error(`Updated failed, code is ${err.code},message is ${err.message}`); - expect(err.code == 14800000 && err.message == "Inner error. Error code 14800006").assertTrue(); + expect(err.code == 14800000 && err.message == "Inner error. Inner code is 6").assertTrue(); console.info(TAG + "update with wrong valueBucket"); done(); } @@ -171,7 +171,7 @@ export default function rdbStoreUpdateTest() { rdbStore.update(valueBucket, predicates, async (err, rows) => { if (err) { console.error(`Updated failed, code is ${err.code},message is ${err.message}`); - expect(err.code == 14800000 && err.message == "Inner error. Error code -1").assertTrue(); + expect(err.code == 14800000 && err.message == "Inner error. Inner code is -1").assertTrue(); console.info(TAG + "update with wrong condition"); done(); } @@ -207,7 +207,7 @@ export default function rdbStoreUpdateTest() { rdbStore.update(valueBucket, predicates, async (err, rows) => { if (err) { console.error(`Updated failed, code is ${err.code},message is ${err.message}`); - expect(err.code == 14800000 && err.message == "Inner error. Error code -1").assertTrue(); + expect(err.code == 14800000 && err.message == "Inner error. Inner code is -1").assertTrue(); console.info(TAG + "update with wrong table name"); done(); } @@ -243,7 +243,7 @@ export default function rdbStoreUpdateTest() { rdbStore.update(valueBucket, predicates, async (err, rows) => { if (err) { console.error(`Updated failed, code is ${err.code},message is ${err.message}`); - expect(err.code == 14800000 && err.message == "Inner error. Error code -1").assertTrue(); + expect(err.code == 14800000 && err.message == "Inner error. Inner code is -1").assertTrue(); console.info(TAG + "update with wrong column name"); done(); } @@ -323,7 +323,7 @@ export default function rdbStoreUpdateTest() { }) .catch((err) => { console.error(`Updated failed, code is ${err.code},message is ${err.message}`); - expect(err.code == 14800000 && err.message == "Inner error. Error code 14800006").assertTrue(); + expect(err.code == 14800000 && err.message == "Inner error. Inner code is 6").assertTrue(); console.info(TAG + "update with wrong valueBucket"); done(); }); @@ -360,7 +360,7 @@ export default function rdbStoreUpdateTest() { }) .catch((err) => { console.error(`Updated failed, code is ${err.code},message is ${err.message}`); - expect(err.code == 14800000 && err.message == "Inner error. Error code -1").assertTrue(); + expect(err.code == 14800000 && err.message == "Inner error. Inner code is -1").assertTrue(); console.info(TAG + "update with wrong condition"); done(); }); @@ -398,7 +398,7 @@ export default function rdbStoreUpdateTest() { }) .catch((err) => { console.error(`Updated failed, code is ${err.code},message is ${err.message}`); - expect(err.code == 14800000 && err.message == "Inner error. Error code -1").assertTrue(); + expect(err.code == 14800000 && err.message == "Inner error. Inner code is -1").assertTrue(); console.info(TAG + "update with null table name"); done(); }); @@ -436,7 +436,7 @@ export default function rdbStoreUpdateTest() { }) .catch((err) => { console.error(`Updated failed, code is ${err.code},message is ${err.message}`); - expect(err.code == 14800000 && err.message == "Inner error. Error code -1").assertTrue(); + expect(err.code == 14800000 && err.message == "Inner error. Inner code is -1").assertTrue(); console.info(TAG + "update with wrong column name"); done(); }); diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arkui_android_adapter.jar b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arkui_android_adapter.jar deleted file mode 100644 index 304f6cc5c8ed284b4259f38aa5e230a428a6bbe9..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arkui_android_adapter.jar +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d7ce1f5258c382b6f64a6ae003febfc5e5e860c0c3414d89d05b5b0326d23b4a -size 246590 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libace_ndk.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libace_ndk.so deleted file mode 100644 index 1e36b9d6bfc303f1bd016f7edd05e9168cf1240d..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libace_ndk.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5e282dbd2e9f24e9a88b1d7619ca4b9da4b56be92019c1bb9e2b1624d05a275a -size 172496 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libace_plugin_util_android.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libace_plugin_util_android.so deleted file mode 100644 index f9dcc18146a62dde7a66c2b9049efc8bde74bcee..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libace_plugin_util_android.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4db9f57e6bacb440b0f86378c08681753ac1a4daba0516900d19572cfa6f5606 -size 237520 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapp_ability_abilitystage.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapp_ability_abilitystage.so deleted file mode 100644 index 797d1847db731da4c229c696716b1baa18ad64c8..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapp_ability_abilitystage.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1462a1d69bec10eeb8b1aee944668b16c1b6ec2b28cd55550d04377d916f0f48 -size 138320 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapp_ability_uiability.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapp_ability_uiability.so deleted file mode 100644 index 86c9a1609cad2bee8ab639ec7b0e0ef5210ac28e..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapp_ability_uiability.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8137bbdf26f6475af4ed9d5adf273225c901f32a59446eeb0521ec9ac3a0a007 -size 138720 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_abilitycontext.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_abilitycontext.so deleted file mode 100644 index bcf65849cdd2436f79d389c0a13ffe6f17e92b16..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_abilitycontext.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:2c3fbcdb446180e5de09e56c43664ec23b8de2099b73ae60ec6853e2ea7c9ccd -size 139208 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_abilitystagecontext.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_abilitystagecontext.so deleted file mode 100644 index a277e73ba5306c59626dbe56b3e689fb720f7115..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_abilitystagecontext.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:28f66c9d34824f295efdfbf3fcf80c3c7d5e6846607e17c8b60f7249e0e47de2 -size 138696 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_applicationcontext.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_applicationcontext.so deleted file mode 100644 index 3bec3ffd746900ba4f750464593af15f7f9fb545..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_applicationcontext.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:b330faf52983f2f5d76bd0b605306f9514af44527b3e679137a668637cf52c00 -size 175480 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_context.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_context.so deleted file mode 100644 index a53a8e241a44f86c87d8cc0de39c7aaee5d8181e..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_context.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:4a7fab2522341c1d1a11e5a255726f917789c92e3d856c6be1b4199378f0113d -size 175104 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_windowstage.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_windowstage.so deleted file mode 100644 index c615670ca4768a8d90d01bdc01aeb2284e326ad7..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libapplication_windowstage.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ab576235451a42a4b3fe9ae2317749ee3f2049fc6fbaf76cd8bb3065c49455e1 -size 138464 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libarkui_android.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libarkui_android.so deleted file mode 100644 index 9c64ca87f2f65d016d0e2f3d753ba5e1c4edc8cb..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libarkui_android.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:55452763f6e5f33f30cf90c8ee8534099de512b992b551073e0b90f00823314f -size 49733264 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libbridge.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libbridge.so deleted file mode 100644 index d9ca096eefbf8642aa949f5d0c654fb92dcc6ce6..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libbridge.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ea1196c3c4e41c879f5a3eb29011ac293b94688a458196db0cfe2a62c31ec238 -size 186080 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libconfiguration.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libconfiguration.so deleted file mode 100644 index 67c6325e6e54d2386a308659976af3be62ef9081..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libconfiguration.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ea4cd898ef423ee4596dedc6496ac331247b9c49d18830fb08ac43be36b62f07 -size 172328 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libdevice.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libdevice.so deleted file mode 100644 index 20a720a8404a2e90f3e104d066dc32e9c7ac1531..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libdevice.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f20ed0c27075f96aae1dd994de92ec25b7cafb18feb64416cdd7af7cb92ffc04 -size 175696 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libfont.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libfont.so deleted file mode 100644 index d337633f88a4b9ba2bd7fd038834b74deba0b796..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libfont.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ba660386db224e63e419c904b1863b7e09d571660f8a79b0f7aa94303047789e -size 179320 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libgrid.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libgrid.so deleted file mode 100644 index 368147266e16a49838f192ff13a2fd5dd21092b5..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libgrid.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:caca87ca854698481874659a0d9c742eaf5f78f6c1d4e051cd82fc50c94145da -size 176824 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libhmicui18n.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libhmicui18n.so deleted file mode 100644 index 07d423c92fb0f0541d621a2897389bed6763c145..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libhmicui18n.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:1bb8f93e11522072007d6bcdab9f63025ecf024d295bc428a0f5e1e5f0f3de07 -size 3308064 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libhmicuuc.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libhmicuuc.so deleted file mode 100644 index b1573836bfab9777065619c9f8a23e6be4f05d17..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libhmicuuc.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:c8a2a9d95b47908e89fc478a230a4880dc0872b95ba59322f7db049e05b24496 -size 2152656 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libimage_utils.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libimage_utils.so deleted file mode 100644 index 52efae0652b8e984bdb0a74e53deead2e58c21d2..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libimage_utils.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:17b6dc129a3b8aa0d2bd501d887e703d18da09531c4f6d8aafff904e00610044 -size 65288 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libmeasure.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libmeasure.so deleted file mode 100644 index b0650d230c968c3373b9bd1469942cc2c08147ca..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libmeasure.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:352a5c520338632a9a48f128d3276349babe74bb6d45fae0604e5b5a0ea3068c -size 444360 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libmediaquery.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libmediaquery.so deleted file mode 100644 index 608e177ac71c422c376b93ff5d7f61aba2bb9623..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libmediaquery.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:16cebbdbe72b2101b438cbce9ac5a0e1308462d43723a3525a8c51a0fe14963e -size 198376 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libpluginmanager.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libpluginmanager.so deleted file mode 100644 index 5d261b5a62ed053aa39c072e86b2e6380bf72927..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libpluginmanager.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9ab9daa3c52043af9125fa00a110461cb52cfb2181f29fe4956785d4ce0d8bd0 -size 428184 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libprompt.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libprompt.so deleted file mode 100644 index d0faf44408219156752ab73b0d9c5c6de34535c3..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libprompt.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d2bd611cd29ea40b6ea5627b88e60e484e6a3ba501b966d523211781e5c8fdb8 -size 461064 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libpromptaction.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libpromptaction.so deleted file mode 100644 index cfc0a1c80eb186f847f4736d59db9507359f2aaa..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libpromptaction.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:8af69e4a0f727c8d007b444ee71d9adf0bff432df1f1bfe7bb7b325598e1e6fd -size 461040 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/librouter.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/librouter.so deleted file mode 100644 index 41c71b441ab3c1e36507083a44162feb0278b25e..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/librouter.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:d5486a808ae708d789d7af0b9ddb45ec6347bc20b300ab1cc707fbc609b5f93c -size 463160 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libsec_shared.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libsec_shared.so deleted file mode 100644 index 534c1e6e12805e7cfa5bd7e9ece89b9563b46c8e..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libsec_shared.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:bfa9d9b18d59845352d2372072bac1ca8ab50a8772f0a52a952ef8c9f53be1be -size 61920 diff --git a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libutils.so b/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libutils.so deleted file mode 100644 index f4260f4df198d61bf8de52317a6e21780270616a..0000000000000000000000000000000000000000 --- a/distributeddatamgr/crossplatform/relationalstoreetstest/src/main/libs/arm64-v8a/libutils.so +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:5710815da7ea1193fa95becd3c7b1e8935e08054c2b9e9da16c60e746a9c387a -size 544000