From f3353d5fbdbfe8576227e9ae6634f149c96245de Mon Sep 17 00:00:00 2001 From: Wouter Deconinck Date: Sat, 9 Sep 2023 20:31:58 -0500 Subject: [PATCH] test: allow more libpaths in llvm-cov --- .github/workflows/linux-eic-shell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linux-eic-shell.yml b/.github/workflows/linux-eic-shell.yml index 273af9d38e..a4d0a222df 100644 --- a/.github/workflows/linux-eic-shell.yml +++ b/.github/workflows/linux-eic-shell.yml @@ -150,7 +150,7 @@ jobs: -o src/tests/algorithms_test/algorithms_test.profdata LIB_PATHS=() for LIB_NAME in algorithms_calorimetry algorithms_digi algorithms_pid algorithms_reco algorithms_tracking; do - LIB_PATH="$(find src/ -type f -name "$LIB_NAME.so")" + LIB_PATH="$(find src/ -type f -name "*$LIB_NAME.*")" LIB_PATHS+=("$LIB_PATH") llvm-cov-15 report $LIB_PATH \ -instr-profile=src/tests/algorithms_test/algorithms_test.profdata \