From bd0c0c2afc7d2d21a7a6d4ab2cf3dbf9db950870 Mon Sep 17 00:00:00 2001 From: zhou_xq Date: Sat, 28 Jun 2025 08:42:19 +0800 Subject: [PATCH] Fix the issue of test_ panic_ handler failure Signed-off-by: zhou_xq --- test/unittest/panic_handler/BUILD.gn | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/unittest/panic_handler/BUILD.gn b/test/unittest/panic_handler/BUILD.gn index e5eff4aeb..06cfda34b 100644 --- a/test/unittest/panic_handler/BUILD.gn +++ b/test/unittest/panic_handler/BUILD.gn @@ -58,6 +58,8 @@ if (defined(ohos_lite)) { group("unittest") { testonly = true - deps = [ ":test_panic_handler" ] + if (!use_clang_coverage) { + deps = [ ":test_panic_handler" ] + } } } -- Gitee