From e3e3af51f9e480ddb7257872ba50ac1ab6e42f87 Mon Sep 17 00:00:00 2001 From: akielaries Date: Sat, 17 Feb 2024 22:46:26 -0700 Subject: [PATCH] #EDITS: updates to linalg module and file seperation --- tests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index a7e05395e..d711356f0 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -159,7 +159,7 @@ if(LCOV) add_custom_command(TARGET RUN_CPP_TESTS POST_BUILD COMMAND ${CMAKE_COMMAND} -E cmake_echo_color --green "[==========]" COMMAND ${CMAKE_COMMAND} -E cmake_echo_color --cyan --bold "[Generating Coverage Reports]" - COMMAND lcov --directory .. --capture --output-file lcov.info --rc geninfo_unexecuted_blocks=1 --ignore-errors mismatch,mismatch + COMMAND lcov --directory .. --capture --output-file lcov.info --rc geninfo_unexecuted_blocks=1 #--ignore-errors mismatch,mismatch COMMAND lcov --remove lcov.info "*c++*" "*11*" "*/googletest/*" "*/gtest*" "/usr/*" "/src" "/build" -o lcov.info --ignore-errors unused #COMMAND mv lcov.info ../../.coverage )