From 0839c40e4d7367240178a605869c57f6f3d53ecc Mon Sep 17 00:00:00 2001 From: very0228 Date: Fri, 21 Apr 2023 01:44:00 +0000 Subject: [PATCH] =?UTF-8?q?=E7=BC=96=E8=AF=91=E5=91=BD=E4=BB=A4=E9=80=82?= =?UTF-8?q?=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: very0228 --- src/core/build/build_testcases.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/build/build_testcases.py b/src/core/build/build_testcases.py index d464347..ab6da3b 100644 --- a/src/core/build/build_testcases.py +++ b/src/core/build/build_testcases.py @@ -331,7 +331,7 @@ class BuildTestcases(object): command.append("--abi-type") command.append("generic_generic_arm_64only") command.append("--device-type") - command.append("hisi_newbaltimore_newphone_standard") + command.append(get_output_path().split("/")[-1]) command.append("--build-variant") command.append("root") command.append("--ccache") @@ -355,7 +355,7 @@ class BuildTestcases(object): command.append("--abi-type") command.append("generic_generic_arm_64only") command.append("--device-type") - command.append("hisi_newbaltimore_newphone_standard") + command.append(get_output_path().split("/")[-1]) command.append("--build-variant") command.append("root") return self._execute_build_deps_files_command(productform, command) -- Gitee