From 880ac457af2cf6ce5c8f62fb014c6aadc1c9eb96 Mon Sep 17 00:00:00 2001 From: ctw-ian Date: Sun, 25 Jun 2023 10:34:32 +0800 Subject: [PATCH] Change the abc generation template from ts2abc to es2abc on defect scan Issue:https://gitee.com/openharmony/arkcompiler_runtime_core/issues/I7FNC8 Signed-off-by: ctw-ian Change-Id: I47d080f5c268416223de46858261a400d2639534 --- libark_defect_scan_aux/tests/unittest/BUILD.gn | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libark_defect_scan_aux/tests/unittest/BUILD.gn b/libark_defect_scan_aux/tests/unittest/BUILD.gn index d9f20e0dcc..8f7db51207 100644 --- a/libark_defect_scan_aux/tests/unittest/BUILD.gn +++ b/libark_defect_scan_aux/tests/unittest/BUILD.gn @@ -11,7 +11,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -import("//arkcompiler/ets_frontend/ts2panda/ts2abc_config.gni") +import("//arkcompiler/ets_frontend/es2panda/es2abc_config.gni") import("//arkcompiler/runtime_core/ark_config.gni") ##############################unittest########################################## @@ -22,13 +22,13 @@ action("generate_abc_file") { "--testcase-list", rebase_path("$ark_root/libark_defect_scan_aux/tests/testcase-list.txt"), "--build-dir", - rebase_path("$ts2abc_build_path"), + rebase_path("$es2abc_build_path"), "--dst-dir", rebase_path("$root_out_dir/arkcompiler/runtime_core"), ] - deps = [ "$ts2abc_root:ark_ts2abc_build" ] - outputs = [ "$ts2abc_build_path/output_not_specified_here" ] + deps = [ "$es2abc_root:es2panda_build" ] + outputs = [ "$es2abc_build_path/output_not_specified_here" ] } ohos_executable("defect_scan_aux_unittest") { -- Gitee