From f6ee5e2fe404d561640590af9f0077500144d07f Mon Sep 17 00:00:00 2001 From: zhaogan Date: Wed, 16 Apr 2025 14:57:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=94=A8=E4=BE=8B=E7=AD=89?= =?UTF-8?q?=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: zhaogan --- test/systemtest/bm/bm_command_dump_system_test.cpp | 4 ++-- test/systemtest/bm/bm_command_install_system_test.cpp | 4 ++-- test/systemtest/bm/bm_command_uninstall_system_test.cpp | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/test/systemtest/bm/bm_command_dump_system_test.cpp b/test/systemtest/bm/bm_command_dump_system_test.cpp index 8b4f08f..cc3ba96 100644 --- a/test/systemtest/bm/bm_command_dump_system_test.cpp +++ b/test/systemtest/bm/bm_command_dump_system_test.cpp @@ -59,7 +59,7 @@ void BmCommandDumpSystemTest::TearDown() * @tc.name: ExecCommand * @tc.desc: Verify the "bm dump -a" command. */ -HWTEST_F(BmCommandDumpSystemTest, Bm_Command_Dump_SystemTest_0100, Function | MediumTest | Level1) +HWTEST_F(BmCommandDumpSystemTest, Bm_Command_Dump_SystemTest_0100, Function | MediumTest | Level0) { // uninstall the bundle ToolSystemTest::UninstallBundle(STRING_BUNDLE_NAME); @@ -82,7 +82,7 @@ HWTEST_F(BmCommandDumpSystemTest, Bm_Command_Dump_SystemTest_0100, Function | Me * @tc.name: ExecCommand * @tc.desc: Verify the "bm dump -n " command. */ -HWTEST_F(BmCommandDumpSystemTest, Bm_Command_Dump_SystemTest_0200, Function | MediumTest | Level1) +HWTEST_F(BmCommandDumpSystemTest, Bm_Command_Dump_SystemTest_0200, Function | MediumTest | Level0) { // uninstall the bundle ToolSystemTest::UninstallBundle(STRING_BUNDLE_NAME); diff --git a/test/systemtest/bm/bm_command_install_system_test.cpp b/test/systemtest/bm/bm_command_install_system_test.cpp index 86540c9..96945f6 100644 --- a/test/systemtest/bm/bm_command_install_system_test.cpp +++ b/test/systemtest/bm/bm_command_install_system_test.cpp @@ -60,7 +60,7 @@ void BmCommandInstallSystemTest::TearDown() * @tc.name: ExecCommand * @tc.desc: Verify the "bm install -p " command. */ -HWTEST_F(BmCommandInstallSystemTest, Bm_Command_Install_SystemTest_0100, Function | MediumTest | Level1) +HWTEST_F(BmCommandInstallSystemTest, Bm_Command_Install_SystemTest_0100, Function | MediumTest | Level0) { // uninstall the bundle ToolSystemTest::UninstallBundle(STRING_BUNDLE_NAME); @@ -79,7 +79,7 @@ HWTEST_F(BmCommandInstallSystemTest, Bm_Command_Install_SystemTest_0100, Functio * @tc.name: ExecCommand * @tc.desc: Verify the "bm install -p " command. */ -HWTEST_F(BmCommandInstallSystemTest, Bm_Command_Install_SystemTest_0200, Function | MediumTest | Level1) +HWTEST_F(BmCommandInstallSystemTest, Bm_Command_Install_SystemTest_0200, Function | MediumTest | Level0) { // install an invalid bundle std::string command = "bm install -p " + STRING_BUNDLE_PATH_INVALID; diff --git a/test/systemtest/bm/bm_command_uninstall_system_test.cpp b/test/systemtest/bm/bm_command_uninstall_system_test.cpp index 0a40be9..0f3cb58 100644 --- a/test/systemtest/bm/bm_command_uninstall_system_test.cpp +++ b/test/systemtest/bm/bm_command_uninstall_system_test.cpp @@ -60,7 +60,7 @@ void BmCommandUninstallSystemTest::TearDown() * @tc.name: ExecCommand * @tc.desc: Verify the "bm uninstall -n " command. */ -HWTEST_F(BmCommandUninstallSystemTest, Bm_Command_Uninstall_SystemTest_0100, Function | MediumTest | Level1) +HWTEST_F(BmCommandUninstallSystemTest, Bm_Command_Uninstall_SystemTest_0100, Function | MediumTest | Level0) { // uninstall the bundle ToolSystemTest::UninstallBundle(STRING_BUNDLE_NAME); @@ -79,7 +79,7 @@ HWTEST_F(BmCommandUninstallSystemTest, Bm_Command_Uninstall_SystemTest_0100, Fun * @tc.name: ExecCommand * @tc.desc: Verify the "bm uninstall -n " command. */ -HWTEST_F(BmCommandUninstallSystemTest, Bm_Command_Uninstall_SystemTest_0200, Function | MediumTest | Level1) +HWTEST_F(BmCommandUninstallSystemTest, Bm_Command_Uninstall_SystemTest_0200, Function | MediumTest | Level0) { // uninstall an invalid bundle std::string command = "bm uninstall -n " + STRING_BUNDLE_NAME_INVALID; -- Gitee