From b761a46084ba892b3df1482f129b7187f09fc8d3 Mon Sep 17 00:00:00 2001 From: Miki Rozloznik Date: Fri, 2 Dec 2022 09:12:03 +0100 Subject: [PATCH] [#448] Fix HTML coverage report for Clang --- cmake/coverage_utils.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/cmake/coverage_utils.cmake b/cmake/coverage_utils.cmake index 59dcb21b5..2c657ec15 100644 --- a/cmake/coverage_utils.cmake +++ b/cmake/coverage_utils.cmake @@ -68,6 +68,7 @@ function(create_coverage_target) COMMAND ${LLVM_COV_BIN} show ${cov_test_exectable} -instr-profile=${cov_binary_dir}/runtime.profdata --format=html --show-instantiations=false -output-dir=${cov_binary_dir} + ${cov_exclude} COMMAND ${LLVM_COV_BIN} report ${cov_test_exectable} -instr-profile=${cov_binary_dir}/runtime.profdata ${cov_exclude}