From 8b0f286f39cfbb9b44c9f9d7322ed2ece9f9b931 Mon Sep 17 00:00:00 2001 From: light7734 Date: Sat, 13 Dec 2025 14:56:16 +0330 Subject: [PATCH] ci: attempt to fix llvm-cov show --- tools/ci/amd64/clang/coverage.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ci/amd64/clang/coverage.sh b/tools/ci/amd64/clang/coverage.sh index 3629275..9479a6a 100755 --- a/tools/ci/amd64/clang/coverage.sh +++ b/tools/ci/amd64/clang/coverage.sh @@ -49,8 +49,8 @@ find ./build/modules -type f -name "*.profraw" -exec rm -fv {} + LLVM_COV_SHOW=$( llvm-cov show \ -instr-profile='./build/coverage/merged.profdata' \ - "$(find ./build -type f -name '*_tests' -executable -exec printf -- '-object %s ' {} \;)" \ - "$(find ./build -type f -name '*\.a' -exec printf -- '-object %s ' {} \;)" \ + "$(find ./build -type f -name '*_tests' -executable -exec printf -- '-o %s ' {} \;)" \ + "$(find ./build -type f -name '*\.a' -exec printf -- '-o %s ' {} \;)" \ -ignore-filename-regex='\.test\.cpp$' \ -ignore-filename-regex='\.fuzz\.cpp$' )