From: maier Date: Fri, 18 Oct 2013 09:27:25 +0000 (+0000) Subject: Bugfix: Do not list pure header files in CTEST_EXTRA_COVERAGE_GLOB X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65220d575047fc73ce36dabbbeea3b6ac7f5e596;p=dealii-svn.git Bugfix: Do not list pure header files in CTEST_EXTRA_COVERAGE_GLOB git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@31292 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/CTestConfig.cmake b/deal.II/CTestConfig.cmake index 30f387c19d..78157805d8 100644 --- a/deal.II/CTestConfig.cmake +++ b/deal.II/CTestConfig.cmake @@ -38,8 +38,8 @@ SET(CTEST_CUSTOM_ERROR_POST_CONTEXT 20) # SET(CTEST_EXTRA_COVERAGE_GLOB - # already relative to source dir: - include/**/*.h + # These files should have executable lines and therefore coverage: + include/**/*.template.h source/**/*.cc )