From 8ad676ba17456cb2fce0c6596b9d25b6634984eb Mon Sep 17 00:00:00 2001 From: wengchangcheng Date: Thu, 5 May 2022 23:05:51 +0800 Subject: [PATCH] Descriptor: fix debug test error details: generate stub file in target_out_dir issue: https://gitee.com/openharmony/ark_js_runtime/issues/I55Y4K Signed-off-by: wengchangcheng Change-Id: Iedf6101f24935936d5a17e4bf19d52fed5fa75a2 --- test/test_helper.gni | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/test_helper.gni b/test/test_helper.gni index 9a5f91ec05..78d4c13a4f 100644 --- a/test/test_helper.gni +++ b/test/test_helper.gni @@ -194,8 +194,9 @@ template("host_aot_test_action") { script = "//ark/js_runtime/test/run_ark_executable.py" - _stub_compile_options_ = - " --com-stub-out=com_stub.m --bc-stub-out=bc_stub.m" + _stub_compile_options_ = " --com-stub-out=" + rebase_path(target_out_dir) + + "/com_stub.m --bc-stub-out=" + + rebase_path(target_out_dir) + "/bc_stub.m" args = [ "--script-file", -- Gitee